Add ProgrammingGroup & ProgrammingGroupMembership
* User can create programming group with other users for exercise * Submission is shared in a group * Also adjust specs
This commit is contained in:

committed by
Sebastian Serth

parent
0234414bae
commit
319c3ab3b4
11
app/policies/programming_group_policy.rb
Normal file
11
app/policies/programming_group_policy.rb
Normal file
@ -0,0 +1,11 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class ProgrammingGroupPolicy < ApplicationPolicy
|
||||
def new?
|
||||
everyone
|
||||
end
|
||||
|
||||
def create?
|
||||
everyone
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user