FEATURE: automatic group membership based on email address

This commit is contained in:
Régis Hanol
2015-01-23 18:25:43 +01:00
parent a2099110aa
commit 256519dddf
13 changed files with 138 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
class AddAutomaticMembershipToGroup < ActiveRecord::Migration
def change
add_column :groups, :automatic_membership_email_domains, :text
add_column :groups, :automatic_membership_retroactive, :boolean, default: false
end
end