WIP Add service page for Chat
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
Râu Cao
2023-08-07 18:16:14 +02:00
parent f49aff262c
commit 1ea8b22a59
5 changed files with 117 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
class Services::ChatController < Services::BaseController
before_action :authenticate_user!
before_action :require_service_available
def show
@service_enabled = current_user.services_enabled.include?(:xmpp)
end
private
def require_service_available
http_status :not_found unless Setting.ejabberd_enabled?
end
end