diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-02-09 14:12:56 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-02-09 14:12:56 +0000 |
commit | 706b101f510b9a1f5acff51bb2f1b14c018b37ce (patch) | |
tree | da359ce2b19e26d885e0742bcaf13e5d6d73fea6 /db | |
parent | 80352b783ce359b70879bc7f2d571f219ae45bb1 (diff) | |
parent | 9474e36f462522af1804e760e5fe134f101fce08 (diff) | |
download | gitlab-ce-706b101f510b9a1f5acff51bb2f1b14c018b37ce.tar.gz |
Merge branch 'huacnlee/gitlab-ce-feature/option-to-include-author-info-in-mail' into 'master'
Add option to include the sender name in body of Notify email
_Originally opened at !2495 by @huacnlee._
- - -
Fixes #7824.
See merge request !2767
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20160121030729_add_email_author_in_body_to_application_settings.rb | 5 | ||||
-rw-r--r-- | db/schema.rb | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20160121030729_add_email_author_in_body_to_application_settings.rb b/db/migrate/20160121030729_add_email_author_in_body_to_application_settings.rb new file mode 100644 index 00000000000..d50791410f9 --- /dev/null +++ b/db/migrate/20160121030729_add_email_author_in_body_to_application_settings.rb @@ -0,0 +1,5 @@ +class AddEmailAuthorInBodyToApplicationSettings < ActiveRecord::Migration + def change + add_column :application_settings, :email_author_in_body, :boolean, default: false + end +end diff --git a/db/schema.rb b/db/schema.rb index d4710346b82..f2eb48e37ed 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -66,6 +66,7 @@ ActiveRecord::Schema.define(version: 20160129135155) do t.string "sentry_dsn" t.boolean "akismet_enabled", default: false t.string "akismet_api_key" + t.boolean "email_author_in_body", default: false end create_table "audit_events", force: :cascade do |t| |