wedding-planner/app/controllers/tokens_controller.rb
Manuel Bustillo 438de103ec
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 1m18s
Add copyright notice / copyright_notice (pull_request) Successful in 2m29s
Run unit tests / unit_tests (pull_request) Successful in 5m33s
Define a dummy endpoint to return a valid CSRF token
2024-12-08 09:32:34 +01:00

9 lines
156 B
Ruby

class TokensController < ApplicationController
skip_before_action :authenticate_user!
skip_before_action :set_tenant
def show
head :ok
end
end