Allow groups to be used as aliases for user mention

when configured by the admin a group can be found through the @mentions
feature in both the compose/reply and the private message user-selectors
and once selected the mention will be replaced by the list of users in
the group
This commit is contained in:
Benjamin Kampmann
2013-12-23 15:46:00 +01:00
parent fd36fa1c2f
commit c743a985a4
15 changed files with 154 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