mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
ecbf6bdda9
Some files were missing the corresponding comment before.
This change was effectively achieved through:
rubocop -A --only Style/FrozenStringLiteralComment,Layout/EmptyLineAfterMagicComment,Style/RedundantFreeze modules/openid_connect
52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 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.
|
|
#++
|
|
|
|
class SessionController < ApplicationController
|
|
no_authorization_required! :logout_warning
|
|
|
|
def logout_warning
|
|
url = signin_url back_url: params[:back_url]
|
|
|
|
render "logout_warning", locals: { message: link_i18n(:logout_warning, url) }
|
|
end
|
|
|
|
private
|
|
|
|
##
|
|
# Finds any words enclosed in brackets (like links in Markdown) and
|
|
# turns them into a link with the given URL.
|
|
def link_i18n(i18n_key, url)
|
|
text = translate i18n_key
|
|
html = text.gsub /\[([^\[\]]+)\]/, "<a href=\"#{url}\">\\1</a>"
|
|
|
|
html.html_safe
|
|
end
|
|
end
|