Package widgets.shout.models

Examples of widgets.shout.models.Shout.save()


  }

  public Object endpoint(String name, Params params) throws Exception {
    if(params._contains("create")) {
      Shout s = new Shout(params.get("author"),params.get("text"));
      s.save();     
      return true;
    } else {
      Feed out = new Feed();
      List<Shout> shouts = Shout.find("order by posted desc").fetch(5);
      long limit = 1000 * 60 * 60 * 24 * 5; // 5 days in ms
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.