2022-11-30 10:13:17 +01:00
|
|
|
class Profile::APITokenCardComponent < ApplicationComponent
|
|
|
|
private
|
|
|
|
|
|
|
|
def render?
|
|
|
|
current_administrateur.present?
|
|
|
|
end
|
|
|
|
|
2024-01-17 10:44:09 +01:00
|
|
|
def api_tokens
|
|
|
|
current_administrateur.api_tokens.order(created_at: :desc)
|
2022-11-30 10:13:17 +01:00
|
|
|
end
|
|
|
|
end
|