2025-01-23 21:34:23 +00:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-12-08 09:32:34 +01:00
|
|
|
class TokensController < ApplicationController
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
skip_before_action :set_tenant
|
|
|
|
|
|
|
|
def show
|
|
|
|
head :ok
|
|
|
|
end
|
|
|
|
end
|