Example #1
0
 @Override
 public void insert() {
   super.insert();
   TipoAzione tp = TipoAzione.find("votato un evento");
   try {
     new Action(user, tp, new Date(), Router.getFullUrl("Events.show") + "?id=" + this.event.id)
         .insert();
   } catch (Exception e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }