2025-01-13 20:38:47 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2025-01-13 21:37:02 +01:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
2024-12-08 08:34:55 +00:00
|
|
|
|
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
|