Example #1
0
 @SecureAdmin(admin = true)
 public static void delete(Long forumId, Long topicId) {
   Topic topic = Topic.findById(topicId);
   notFoundIfNull(topic);
   topic.delete();
   flash.success("The topic has been deleted");
   Forums.show(forumId, null);
 }