Files
timeoverflow/app/controllers/terms_controller.rb
Francisco José Perejón Barrios d91a32b50d [Feat] Signup users (#661)
2022-11-02 22:28:27 +01:00

14 lines
346 B
Ruby

class TermsController < ApplicationController
before_action :authenticate_user!
skip_before_action :check_for_terms_acceptance!
def show
@document = Document.terms_and_conditions
end
def accept
current_user.touch :terms_accepted_at
redirect_to(current_user.organizations.empty? ? organizations_path : root_path)
end
end