Sha256: 1bdf66119d903affeb8ad1d0cbbf4f2eac4050b5b5e5b2a1b3b75ebc3f33b63c
Contents?: true
Size: 342 Bytes
Versions: 6
Compression:
Stored size: 342 Bytes
Contents
# frozen_string_literal: true module Auther # Default implementation for session management. class SessionController < BaseController layout "auther/auth" before_action :load_title, :load_label before_action :load_account_options, only: %i[new create] private def new_template_path = "auther/session/new" end end
Version data entries
6 entries across 6 versions & 1 rubygems