Sha256: 173e096abda1aa0749733ae84107710fbc6922e2c3b1f63e50762890c241c1b5

Contents?: true

Size: 434 Bytes

Versions: 1

Compression:

Stored size: 434 Bytes

Contents

# frozen_string_literal: true

module Archangel
  ##
  # Authentication base controller
  #
  class AuthController < ApplicationController
    include Archangel::Controllers::MetatagableConcern

    protected

    ##
    # Theme layout
    #
    # @return [String] auth
    #
    def layout_from_theme
      "auth"
    end

    def default_meta_tags
      super.merge(noindex: true, nofollow: true, noarchive: true)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archangel-0.4.0 app/controllers/archangel/auth_controller.rb