', notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}', email: email_html, email_title: "#{PLATFORM}: {nickname1} 在 {nickname2}/{repository} 指派给你一个合并请求")
self.create(type: 'MessageTemplate::PullRequestAtme', sys_notice: '{nickname} 在合并请求 {title} 中@我', notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}')
email_html = File.read("#{email_template_html_dir}/pull_request_changed.html")
- self.create(type: 'MessageTemplate::PullRequestChanged', sys_notice: '在项目{nickname2}/{repository}的合并请求 {title} 中:{ifassigner}{nickname1}将审查成员从 {assigner1} 修改为 {assigner2} {endassigner}{ifmilestone}{nickname1}将里程碑从 {milestone1} 修改为 {milestone2} {endmilestone}{iftag}{nickname1}将标记从 {tag1} 修改为 {tag2} {endtag}{ifpriority}{nickname1}将优先级从 {priority1} 修改为 {priority2} {endpriority}', email: email_html, email_title: 'GitLink: 合并请求 {title} 有状态变更', notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}')
+ self.create(type: 'MessageTemplate::PullRequestChanged', sys_notice: '在项目{nickname2}/{repository}的合并请求 {title} 中:{ifassigner}{nickname1}将审查成员从 {assigner1} 修改为 {assigner2} {endassigner}{ifmilestone}{nickname1}将里程碑从 {milestone1} 修改为 {milestone2} {endmilestone}{iftag}{nickname1}将标记从 {tag1} 修改为 {tag2} {endtag}{ifpriority}{nickname1}将优先级从 {priority1} 修改为 {priority2} {endpriority}', email: email_html, email_title: "#{PLATFORM}: 合并请求 {title} 有状态变更", notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}')
email_html = File.read("#{email_template_html_dir}/pull_request_closed.html")
- self.create(type: 'MessageTemplate::PullRequestClosed', sys_notice: '你提交的合并请求:{title} 被拒绝', email: email_html, email_title: 'GitLink: 合并请求 {title} 有状态变更', notification_url: '')
+ self.create(type: 'MessageTemplate::PullRequestClosed', sys_notice: '你提交的合并请求:{title} 被拒绝', email: email_html, email_title: "#{PLATFORM}: 合并请求 {title} 有状态变更", notification_url: '')
self.create(type: 'MessageTemplate::PullRequestJournal', sys_notice: '{nickname}评论合并请求{title}:{notes}', notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}')
email_html = File.read("#{email_template_html_dir}/pull_request_merged.html")
- self.create(type: 'MessageTemplate::PullRequestMerged', sys_notice: '你提交的合并请求:{title} 已通过', email: email_html, email_title: 'GitLink: 合并请求 {title} 有状态变更', notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}')
+ self.create(type: 'MessageTemplate::PullRequestMerged', sys_notice: '你提交的合并请求:{title} 已通过', email: email_html, email_title: "#{PLATFORM}: 合并请求 {title} 有状态变更", notification_url: '{baseurl}/{owner}/{identifier}/pulls/{id}')
email_html = File.read("#{email_template_html_dir}/team_joined.html")
- self.create(type: 'MessageTemplate::TeamJoined', sys_notice: '你已被拉入组织 {organization} 的 {team} 团队,拥有{role}权限', email: email_html, email_title: 'GitLink: 在 {organization} 组织你的账号有权限变更', notification_url: '{baseurl}/{login}')
+ self.create(type: 'MessageTemplate::TeamJoined', sys_notice: '你已被拉入组织 {organization} 的 {team} 团队,拥有{role}权限', email: email_html, email_title: "#{PLATFORM}: 在 {organization} 组织你的账号有权限变更", notification_url: '{baseurl}/{login}')
email_html = File.read("#{email_template_html_dir}/team_left.html")
- self.create(type: 'MessageTemplate::TeamLeft', sys_notice: '你已被移出组织 {organization} 的 {team} 团队', email: email_html, email_title: 'GitLink: 在 {organization} 组织你的账号有权限变更', notification_url: '{baseurl}/{login}')
+ self.create(type: 'MessageTemplate::TeamLeft', sys_notice: '你已被移出组织 {organization} 的 {team} 团队', email: email_html, email_title: "#{PLATFORM}: 在 {organization} 组织你的账号有权限变更", notification_url: '{baseurl}/{login}')
end
def self.sys_notice
diff --git a/app/models/message_template/issue_assigned.rb b/app/models/message_template/issue_assigned.rb
index 7ce7f10c..7f8494f6 100644
--- a/app/models/message_template/issue_assigned.rb
+++ b/app/models/message_template/issue_assigned.rb
@@ -53,6 +53,7 @@ class MessageTemplate::IssueAssigned < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', issue&.subject)
content.gsub!('{id}', issue&.id.to_s)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/issue_changed.rb b/app/models/message_template/issue_changed.rb
index 4d9e132c..e8a5e5cd 100644
--- a/app/models/message_template/issue_changed.rb
+++ b/app/models/message_template/issue_changed.rb
@@ -359,6 +359,7 @@ class MessageTemplate::IssueChanged < MessageTemplate
else
content.gsub!(/({ifduedate})(.*)({endduedate})/, '')
end
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/issue_deleted.rb b/app/models/message_template/issue_deleted.rb
index a3eae75d..599cc235 100644
--- a/app/models/message_template/issue_deleted.rb
+++ b/app/models/message_template/issue_deleted.rb
@@ -41,6 +41,7 @@ class MessageTemplate::IssueDeleted < MessageTemplate
content.gsub!('{login}', operator&.login)
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', issue_title)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/issue_expire.rb b/app/models/message_template/issue_expire.rb
index 1f48c563..88593d84 100644
--- a/app/models/message_template/issue_expire.rb
+++ b/app/models/message_template/issue_expire.rb
@@ -48,6 +48,7 @@ class MessageTemplate::IssueExpire < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', issue&.subject)
content.gsub!('{id}', issue&.id.to_s)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/organization_joined.rb b/app/models/message_template/organization_joined.rb
index 30f91ac9..daa3f0fe 100644
--- a/app/models/message_template/organization_joined.rb
+++ b/app/models/message_template/organization_joined.rb
@@ -41,6 +41,7 @@ class MessageTemplate::OrganizationJoined < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{login}', organization&.login)
content.gsub!('{organization}', organization&.real_name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/organization_left.rb b/app/models/message_template/organization_left.rb
index 50a77138..f21982e9 100644
--- a/app/models/message_template/organization_left.rb
+++ b/app/models/message_template/organization_left.rb
@@ -41,6 +41,7 @@ class MessageTemplate::OrganizationLeft < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{login}', organization&.login)
content.gsub!('{organization}', organization&.real_name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/organization_role.rb b/app/models/message_template/organization_role.rb
index 20771295..3919dc94 100644
--- a/app/models/message_template/organization_role.rb
+++ b/app/models/message_template/organization_role.rb
@@ -43,6 +43,7 @@ class MessageTemplate::OrganizationRole < MessageTemplate
content.gsub!('{login}', organization&.login)
content.gsub!('{organization}', organization&.real_name)
content.gsub!('{role}', role)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_issue.rb b/app/models/message_template/project_issue.rb
index 5904a428..e0483083 100644
--- a/app/models/message_template/project_issue.rb
+++ b/app/models/message_template/project_issue.rb
@@ -56,6 +56,7 @@ class MessageTemplate::ProjectIssue < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{id}', issue&.id.to_s)
content.gsub!('{title}', issue&.subject)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_joined.rb b/app/models/message_template/project_joined.rb
index c2d23fbd..1f83c312 100644
--- a/app/models/message_template/project_joined.rb
+++ b/app/models/message_template/project_joined.rb
@@ -44,6 +44,7 @@ class MessageTemplate::ProjectJoined < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{nickname}', project&.owner&.real_name)
content.gsub!('{repository}', project&.name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_left.rb b/app/models/message_template/project_left.rb
index 6f5bafa0..4df14c15 100644
--- a/app/models/message_template/project_left.rb
+++ b/app/models/message_template/project_left.rb
@@ -43,6 +43,7 @@ class MessageTemplate::ProjectLeft < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{nickname}', project&.owner&.real_name)
content.gsub!('{repository}', project&.name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_member_joined.rb b/app/models/message_template/project_member_joined.rb
index e9b6b5d5..4c0a77a0 100644
--- a/app/models/message_template/project_member_joined.rb
+++ b/app/models/message_template/project_member_joined.rb
@@ -48,6 +48,7 @@ class MessageTemplate::ProjectMemberJoined < MessageTemplate
content.gsub!('{nickname1}', user&.real_name)
content.gsub!('{nickname2}', project&.owner&.real_name)
content.gsub!('{repository}', project&.name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_member_left.rb b/app/models/message_template/project_member_left.rb
index 23d4ef5f..d1891e7b 100644
--- a/app/models/message_template/project_member_left.rb
+++ b/app/models/message_template/project_member_left.rb
@@ -48,6 +48,7 @@ class MessageTemplate::ProjectMemberLeft < MessageTemplate
content.gsub!('{nickname1}', user&.real_name)
content.gsub!('{nickname2}', project&.owner&.real_name)
content.gsub!('{repository}', project&.name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_milestone.rb b/app/models/message_template/project_milestone.rb
index c2560c0a..7f1f94d9 100644
--- a/app/models/message_template/project_milestone.rb
+++ b/app/models/message_template/project_milestone.rb
@@ -55,6 +55,7 @@ class MessageTemplate::ProjectMilestone < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{id}', milestone&.id.to_s)
content.gsub!('{name}', milestone&.name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_milestone_completed.rb b/app/models/message_template/project_milestone_completed.rb
index 877bf033..eec895a6 100644
--- a/app/models/message_template/project_milestone_completed.rb
+++ b/app/models/message_template/project_milestone_completed.rb
@@ -52,6 +52,7 @@ class MessageTemplate::ProjectMilestoneCompleted < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{id}', milestone&.id.to_s)
content.gsub!('{name}', milestone&.name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_pull_request.rb b/app/models/message_template/project_pull_request.rb
index 40c700b2..f36ac086 100644
--- a/app/models/message_template/project_pull_request.rb
+++ b/app/models/message_template/project_pull_request.rb
@@ -56,6 +56,7 @@ class MessageTemplate::ProjectPullRequest < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{id}', pull_request&.id.to_s)
content.gsub!('{title}', pull_request&.title)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_role.rb b/app/models/message_template/project_role.rb
index f7f4940d..560f345e 100644
--- a/app/models/message_template/project_role.rb
+++ b/app/models/message_template/project_role.rb
@@ -46,6 +46,7 @@ class MessageTemplate::ProjectRole < MessageTemplate
content.gsub!('{identifier}', project&.identifier)
content.gsub!('{repository}', project&.name)
content.gsub!('{role}', role)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/project_setting_changed.rb b/app/models/message_template/project_setting_changed.rb
index 49cf7821..0920dfe7 100644
--- a/app/models/message_template/project_setting_changed.rb
+++ b/app/models/message_template/project_setting_changed.rb
@@ -300,6 +300,7 @@ class MessageTemplate::ProjectSettingChanged < MessageTemplate
else
content.gsub!(/({ifnavbar})(.*)({endnavbar})/, '')
end
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/pull_request_assigned.rb b/app/models/message_template/pull_request_assigned.rb
index bca37151..642ca912 100644
--- a/app/models/message_template/pull_request_assigned.rb
+++ b/app/models/message_template/pull_request_assigned.rb
@@ -53,6 +53,7 @@ class MessageTemplate::PullRequestAssigned < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', pull_request&.title)
content.gsub!('{id}', pull_request&.id.to_s)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/pull_request_changed.rb b/app/models/message_template/pull_request_changed.rb
index ab2c73b6..a2071c23 100644
--- a/app/models/message_template/pull_request_changed.rb
+++ b/app/models/message_template/pull_request_changed.rb
@@ -118,6 +118,7 @@ class MessageTemplate::PullRequestChanged < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', pull_request&.title)
content.gsub!('{id}', pull_request&.id.to_s)
+ content.gsub!('{platform}', PLATFORM)
change_count = change_params.keys.size
# 合并请求审查成员修改
diff --git a/app/models/message_template/pull_request_closed.rb b/app/models/message_template/pull_request_closed.rb
index ea1ffabc..cb8b1b74 100644
--- a/app/models/message_template/pull_request_closed.rb
+++ b/app/models/message_template/pull_request_closed.rb
@@ -51,6 +51,7 @@ class MessageTemplate::PullRequestClosed < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', pull_request&.title)
content.gsub!('{id}', pull_request&.id.to_s)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/pull_request_merged.rb b/app/models/message_template/pull_request_merged.rb
index eb4bb5e1..384cf8f1 100644
--- a/app/models/message_template/pull_request_merged.rb
+++ b/app/models/message_template/pull_request_merged.rb
@@ -51,6 +51,7 @@ class MessageTemplate::PullRequestMerged < MessageTemplate
content.gsub!('{baseurl}', base_url)
content.gsub!('{title}', pull_request&.title)
content.gsub!('{id}', pull_request&.id.to_s)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/team_joined.rb b/app/models/message_template/team_joined.rb
index f4994095..90f153d9 100644
--- a/app/models/message_template/team_joined.rb
+++ b/app/models/message_template/team_joined.rb
@@ -45,6 +45,7 @@ class MessageTemplate::TeamJoined < MessageTemplate
content.gsub!('{organization}', organization&.real_name)
content.gsub!('{team}', team&.nickname)
content.gsub!('{role}', team&.authorize_name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/app/models/message_template/team_left.rb b/app/models/message_template/team_left.rb
index 57242263..1618f41b 100644
--- a/app/models/message_template/team_left.rb
+++ b/app/models/message_template/team_left.rb
@@ -45,6 +45,7 @@ class MessageTemplate::TeamLeft < MessageTemplate
content.gsub!('{organization}', organization&.real_name)
content.gsub!('{team}', team&.nickname)
content.gsub!('{role}', team&.authorize_name)
+ content.gsub!('{platform}', PLATFORM)
return receiver&.mail, title, content
else
diff --git a/public/message_template/issue_assigned.html b/public/message_template/issue_assigned.html
index c45e8729..c45bb6ee 100755
--- a/public/message_template/issue_assigned.html
+++ b/public/message_template/issue_assigned.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/issue_changed.html b/public/message_template/issue_changed.html
index 537a12dc..db696a0c 100755
--- a/public/message_template/issue_changed.html
+++ b/public/message_template/issue_changed.html
@@ -48,7 +48,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/issue_deleted.html b/public/message_template/issue_deleted.html
index 4207144c..335fdfbc 100755
--- a/public/message_template/issue_deleted.html
+++ b/public/message_template/issue_deleted.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/issue_expire.html b/public/message_template/issue_expire.html
index 641742bb..34701a0a 100644
--- a/public/message_template/issue_expire.html
+++ b/public/message_template/issue_expire.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/organization_joined.html b/public/message_template/organization_joined.html
index e3848f47..7d50ebdb 100755
--- a/public/message_template/organization_joined.html
+++ b/public/message_template/organization_joined.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/organization_left.html b/public/message_template/organization_left.html
index 32b1dc30..b2eeffbb 100755
--- a/public/message_template/organization_left.html
+++ b/public/message_template/organization_left.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/organization_role.html b/public/message_template/organization_role.html
index b411c734..ad597dea 100755
--- a/public/message_template/organization_role.html
+++ b/public/message_template/organization_role.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_issue.html b/public/message_template/project_issue.html
index 653bd7a3..4b6812fc 100755
--- a/public/message_template/project_issue.html
+++ b/public/message_template/project_issue.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_joined.html b/public/message_template/project_joined.html
index dfafd5d9..fa8f0771 100755
--- a/public/message_template/project_joined.html
+++ b/public/message_template/project_joined.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_left.html b/public/message_template/project_left.html
index 94a0e986..81453d22 100755
--- a/public/message_template/project_left.html
+++ b/public/message_template/project_left.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_member_joined.html b/public/message_template/project_member_joined.html
index d2fec456..b22ced2d 100755
--- a/public/message_template/project_member_joined.html
+++ b/public/message_template/project_member_joined.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_member_left.html b/public/message_template/project_member_left.html
index 8dfca4a2..d1a8b044 100755
--- a/public/message_template/project_member_left.html
+++ b/public/message_template/project_member_left.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_milestone.html b/public/message_template/project_milestone.html
index 6f1a4b11..0b2a0725 100644
--- a/public/message_template/project_milestone.html
+++ b/public/message_template/project_milestone.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_milestone_completed.html b/public/message_template/project_milestone_completed.html
index 89960e3c..6b62a8cb 100644
--- a/public/message_template/project_milestone_completed.html
+++ b/public/message_template/project_milestone_completed.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_pull_request.html b/public/message_template/project_pull_request.html
index 78aa5c2d..fe389e98 100755
--- a/public/message_template/project_pull_request.html
+++ b/public/message_template/project_pull_request.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_role.html b/public/message_template/project_role.html
index 17f53e37..3e8e8b55 100755
--- a/public/message_template/project_role.html
+++ b/public/message_template/project_role.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/project_setting_changed.html b/public/message_template/project_setting_changed.html
index 4d1f9762..ecea17ef 100755
--- a/public/message_template/project_setting_changed.html
+++ b/public/message_template/project_setting_changed.html
@@ -45,7 +45,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/pull_request_assigned.html b/public/message_template/pull_request_assigned.html
index c12924d1..1d181061 100755
--- a/public/message_template/pull_request_assigned.html
+++ b/public/message_template/pull_request_assigned.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/pull_request_changed.html b/public/message_template/pull_request_changed.html
index ab9c3f6a..ccbefad9 100755
--- a/public/message_template/pull_request_changed.html
+++ b/public/message_template/pull_request_changed.html
@@ -42,7 +42,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/pull_request_closed.html b/public/message_template/pull_request_closed.html
index dca5e1c7..c860a54a 100755
--- a/public/message_template/pull_request_closed.html
+++ b/public/message_template/pull_request_closed.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/pull_request_merged.html b/public/message_template/pull_request_merged.html
index 8c6e3469..59812ddd 100755
--- a/public/message_template/pull_request_merged.html
+++ b/public/message_template/pull_request_merged.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/team_joined.html b/public/message_template/team_joined.html
index 231f8b79..36610f72 100755
--- a/public/message_template/team_joined.html
+++ b/public/message_template/team_joined.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队
diff --git a/public/message_template/team_left.html b/public/message_template/team_left.html
index 1321e7b4..ea2cce64 100755
--- a/public/message_template/team_left.html
+++ b/public/message_template/team_left.html
@@ -38,7 +38,7 @@
如果您在使用中有任何的疑问和建议,欢迎您给我们反馈意见
QQ群:1071514693
-
GitLink团队
+
{platform}团队