diff options
author | Lukas Eipert <leipert@gitlab.com> | 2018-10-10 14:30:40 +0200 |
---|---|---|
committer | Lukas Eipert <leipert@gitlab.com> | 2018-10-16 14:54:18 +0200 |
commit | 2063dcf511acf41800f3370372b73a03b066e9f4 (patch) | |
tree | d95e1a0c862276fd9ca52d22739cc34864c890e1 /app/mailers | |
parent | e11ff3b6bc3700b93f4893903ff29c8914c70464 (diff) | |
download | gitlab-ce-2063dcf511acf41800f3370372b73a03b066e9f4.tar.gz |
Add IID headers to E-Mail notifications
These headers can be used to build URLs for API requests. Good examples
would be Issues and Merge Requests
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/notify.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/mailers/notify.rb b/app/mailers/notify.rb index f7347ee61b4..662f3e00047 100644 --- a/app/mailers/notify.rb +++ b/app/mailers/notify.rb @@ -118,6 +118,7 @@ class Notify < BaseMailer add_unsubscription_headers_and_links headers["X-GitLab-#{model.class.name}-ID"] = model.id + headers["X-GitLab-#{model.class.name}-IID"] = model.iid if model.respond_to?(:iid) headers['X-GitLab-Reply-Key'] = reply_key @reason = headers['X-GitLab-NotificationReason'] |