Package controllers.more

Source Code of controllers.more.Perf

package controllers.more;

import cn.bran.play.JapidController;
import models.DataModel;

// make sure you have
//     module.japid=${play.path}/modules/japid-head
// in your application.conf file, and "play eclipsify"
// if you notice the JapidController is not found.

public class Perf extends JapidController {
  public static void perf() {
    DataModel model = DataModel.dataModel;
    DataModel.User loggedInUser = model.getLoggedInUser();

//    renderArgs.put("title", "Entries");
//    renderArgs.put("loggedInUser", loggedInUser);
//    renderArgs.put("entries", model.getEntries());

    renderJapid("Entries", loggedInUser, model.getEntries());
  }
}
TOP

Related Classes of controllers.more.Perf

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.