forked from opf/openproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request opf#14016 from opf/impl/meeting-email-notifications
add email notifications for meetings
- Loading branch information
Showing
37 changed files
with
738 additions
and
377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#-- copyright | ||
# OpenProject is an open source project management software. | ||
# Copyright (C) 2012-2023 the OpenProject GmbH | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License version 3. | ||
# | ||
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: | ||
# Copyright (C) 2006-2013 Jean-Philippe Lang | ||
# Copyright (C) 2010-2013 the ChiliProject Team | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
# | ||
# See docs/COPYRIGHT.rdoc for more details. | ||
#++ | ||
|
||
module MailLayoutHelper | ||
def placeholder_table_styles(options = {}) | ||
default_options = { | ||
style: 'table-layout:fixed;border-collapse:separate;border-spacing:0;font-family:Helvetica;' << | ||
(options[:style].present? ? options.delete(:style) : ''), | ||
cellspacing: "0", | ||
cellpadding: "0" | ||
} | ||
|
||
default_options.merge(options).map { |k, v| "#{k}=#{v}" }.join(' ') | ||
end | ||
|
||
def placeholder_text_styles(**overwrites) | ||
{ | ||
color: '#878787', | ||
'line-height': '24px', | ||
'font-size': '14px', | ||
'white-space': 'normal', | ||
overflow: 'hidden', | ||
'max-width': '100%', | ||
width: '100%' | ||
}.merge(overwrites) | ||
.map { |k, v| "#{k}: #{v}" } | ||
.join('; ') | ||
end | ||
|
||
def action_button(&block) | ||
render( | ||
partial: 'mailer/mailer_button', | ||
locals: { block: } | ||
) | ||
end | ||
|
||
def placeholder_cell(number, vertical:) | ||
style = if vertical | ||
"max-width:#{number}; min-width:#{number}; width:#{number}" | ||
else | ||
"line-height:#{number}; max-width:0; min-width:0; height:#{number}; width:0; font-size:#{number}" | ||
end | ||
|
||
content_tag('td', ' '.html_safe, style:) | ||
end | ||
|
||
def user_salutation(user) | ||
case Setting.emails_salutation | ||
when :name | ||
I18n.t(:'mail.salutation', user: user.name) | ||
else | ||
I18n.t(:'mail.salutation', user: user.firstname) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<%= salutation %> | ||
<%= user_salutation(user) %> | ||
<%= header_summary %> | ||
<%= "-" * 100 %> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<table <%= placeholder_table_styles(style: 'font-size:14px;') %>> | ||
<tr> | ||
<td> | ||
<table <%= placeholder_table_styles(width: '100%', style: 'width:100%;') %>> | ||
<tr> | ||
<td> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
<%= placeholder_cell('10px', vertical: true) %> | ||
<td> | ||
<table <%= placeholder_table_styles %>> | ||
<tr> | ||
<td style="padding: 8px 12px; border: 1px solid #878787; border-radius: 16px; overflow: hidden; text-overflow: ellipsis;white-space: nowrap;"> | ||
<%= capture(&block) %> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#-- copyright | ||
# OpenProject is an open source project management software. | ||
# Copyright (C) 2012-2023 the OpenProject GmbH | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License version 3. | ||
# | ||
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: | ||
# Copyright (C) 2006-2013 Jean-Philippe Lang | ||
# Copyright (C) 2010-2013 the ChiliProject Team | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
# | ||
# See COPYRIGHT and LICENSE files for more details. | ||
#++ | ||
# | ||
|
||
module OpenProject::Patches::MailerControllerCsp | ||
extend ActiveSupport::Concern | ||
|
||
included do | ||
prepend_before_action :extend_content_security_policy | ||
|
||
def extend_content_security_policy | ||
append_content_security_policy_directives( | ||
script_src: %w('unsafe-inline'), | ||
) | ||
end | ||
end | ||
end | ||
|
||
OpenProject::Patches.patch_gem_version 'rails', '7.0.8' do | ||
Rails::MailersController.include OpenProject::Patches::MailerControllerCsp | ||
end |
Oops, something went wrong.