mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
c743a985a4
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
5 lines
136 B
Ruby
5 lines
136 B
Ruby
class AddAliasLevelToGroups < ActiveRecord::Migration
|
|
def change
|
|
add_column :groups, :alias_level, :integer, default: 0
|
|
end
|
|
end
|