Beispiel #1
0
 @Authenticated
 @Restrict(@Group("admin"))
 @RestrictApproved
 public Result contentReportList(String status, int page) {
   return contentReportController.list(status, page);
 }
Beispiel #2
0
 @Authenticated
 @Restrict(@Group("admin"))
 @RestrictApproved
 public Result contentReportShow(String contentType, Long contentKey, Long key) {
   return contentReportController.show(contentType, contentKey, key);
 }
Beispiel #3
0
 @Authenticated
 @Restrict(@Group("admin"))
 @RestrictApproved
 public Result contentReportDelete(Long key) {
   return contentReportController.delete(key);
 }
Beispiel #4
0
 @Authenticated
 @Restrict(@Group("admin"))
 @RestrictApproved
 public Result contentReportEditForm(Long key) {
   return contentReportController.editForm(key);
 }
Beispiel #5
0
 @Authenticated
 @Restrict(@Group("admin"))
 @RestrictApproved
 public Result contentReportCreate() {
   return contentReportController.create();
 }
Beispiel #6
0
 @Authenticated
 @Restrict(@Group("admin"))
 @RestrictApproved
 public Result contentReportList() {
   return contentReportController.list(null, 0);
 }