wedding-planner/app/controllers/tokens_controller.rb
Manuel Bustillo 98877166dd
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 1m34s
Add copyright notice / copyright_notice (pull_request) Successful in 3m1s
Run unit tests / unit_tests (pull_request) Successful in 4m39s
Add copyright notice
2024-12-08 08:34:55 +00:00

11 lines
194 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class TokensController < ApplicationController
skip_before_action :authenticate_user!
skip_before_action :set_tenant
def show
head :ok
end
end