3489dc3d72
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
9 lines
189 B
Ruby
9 lines
189 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddGroupEmailsDisabled < ActiveRecord::Migration[5.2]
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :namespaces, :emails_disabled, :boolean
|
|
end
|
|
end
|