Sha256: 7f667f27d09b7635fd3e353e4e91108c4268192a25ea30b9aa18a46dd50c3b25

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

=begin
Copyright (c) 2023, all rights reserved.

All the information provided by this platform is protected by international laws related  to 
industrial property, intellectual property, copyright and relative international laws. 
All intellectual or industrial property rights of the code, texts, trade mark, design, 
pictures and any other information belongs to the owner of this platform.

Without the written permission of the owner, any replication, modification,
transmission, publication is strictly forbidden.

For more information read the license file including with this software.

// · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
// · 

=end
require_dependency "lesli_babel/application_controller"

module LesliBabel
    class RelevantsController < ApplicationController
        before_action :set_relevant, only: [:show, :update, :destroy]

        # GET /relevants
        def index
        end

        private

        # Use callbacks to share common setup or constraints between actions.
        def set_relevant
        end

        # Only allow a list of trusted parameters through.
        def relevant_params
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lesli_babel-0.6.0 app/controllers/lesli_babel/relevants_controller.rb