From f6ca786c0ece73cf92ebb1eba7ed9410255017bb Mon Sep 17 00:00:00 2001 From: b Date: Thu, 15 Nov 2018 21:16:04 +0100 Subject: [PATCH] Update app/models/gather.rb --- app/models/gather.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/gather.rb b/app/models/gather.rb index 44b774f..afcdbdf 100644 --- a/app/models/gather.rb +++ b/app/models/gather.rb @@ -181,11 +181,11 @@ class Gather < ActiveRecord::Base end def can_create? cuser - cuser and cuser.admin? + return true if cuser.admin? or cuser.gather_moderator? end def can_update? cuser - cuser and cuser.admin? + return true if cuser and cuser.admin? or cuser.gather_moderator? end def self.last(name = "NS2")