Sha256: 9c782a231dfda6a86ece9f1ff4ac477c28052c878085ac6db0ccf4fc5c31bac5

Contents?: true

Size: 304 Bytes

Versions: 4

Compression:

Stored size: 304 Bytes

Contents

module ThinkFeelDoEngine
  # Provides the static privacy policy page.
  class PrivacyPoliciesController < ApplicationController
    layout :determine_layout

    skip_authorization_check

    def show
    end

    def determine_layout
      current_participant ? "tool" : "application"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
think_feel_do_engine-3.10.9 app/controllers/think_feel_do_engine/privacy_policies_controller.rb
think_feel_do_engine-3.10.8 app/controllers/think_feel_do_engine/privacy_policies_controller.rb
think_feel_do_engine-3.10.7 app/controllers/think_feel_do_engine/privacy_policies_controller.rb
think_feel_do_engine-3.10.6 app/controllers/think_feel_do_engine/privacy_policies_controller.rb