Merge pull request #1782 from ligthyear/group-mention

Allow groups to be used as aliases for user mentions
This commit is contained in:
Sam
2014-01-12 14:36:45 -08:00
15 changed files with 178 additions and 39 deletions

View File

@ -0,0 +1,5 @@
class AddAliasLevelToGroups < ActiveRecord::Migration
def change
add_column :groups, :alias_level, :integer, default: 0
end
end