Sha256: f0468d76fc27ee2baa51b4225765680b14cdd69176f86df698f7ac34b7820b4b

Contents?: true

Size: 1.92 KB

Versions: 3

Compression:

Stored size: 1.92 KB

Contents

=begin

Lesli

Copyright (c) 2023, Lesli Technologies, S. A.

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 3 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, see http://www.gnu.org/licenses/.

Lesli · Ruby on Rails SaaS development platform.

Made with ♥ by https://www.lesli.tech
Building a better future, one line of code at a time.

@contact  hello@lesli.tech
@website  https://www.lesli.tech
@license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html

// · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
// ·
=end

module Lesli
    class ApplicationLesliController < ApplicationController
        include Interfaces::Application::Authorization
        include Interfaces::Application::Customization
        include Interfaces::Application::Responder
        include Interfaces::Application::Requester
        include Interfaces::Application::Logger

        protect_from_forgery with: :exception

        before_action :set_path
        before_action :set_locale
        before_action :authorize_request
        before_action :authorize_privileges
        before_action :set_helpers_for_request
        before_action :set_customization

        after_action  :log_requests

        layout "lesli/layouts/application-lesli"

        # Rescue from "ParameterMissing" when using required params
        # in controllers
        rescue_from ActionController::ParameterMissing do |_e|
            respond_with_error("Missing params")
        end
    end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lesli-5.0.4 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.3 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.2 app/controllers/lesli/application_lesli_controller.rb