42fcd3881f
The user has the rights of a public user execpt it can never create a project, group, or team. Also it cant view internal projects.
5 lines
137 B
Ruby
5 lines
137 B
Ruby
class AddExternalFlagToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :external, :boolean, default: false
|
|
end
|
|
end
|