diff --git a/locales/en.json b/locales/en.json index 8a75fec5..49069045 100644 --- a/locales/en.json +++ b/locales/en.json @@ -21,6 +21,8 @@ "authentication_profile_required" : "Authentication to profile '%s' required", "operation_interrupted" : "Operation interrupted", + "logged_in" : "Logged in", + "logged_out" : "Logged out", "not_logged_in" : "You are not logged in", "server_already_running" : "A server is already running on that port" } diff --git a/locales/fr.json b/locales/fr.json index 90a321ae..57386a1e 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -21,6 +21,8 @@ "authentication_profile_required" : "Authentification au profile '%s' requise", "operation_interrupted" : "Opération interrompue", + "logged_in" : "Connecté", + "logged_out" : "Déconnecté", "not_logged_in" : "Vous n'êtes pas connecté", "server_already_running" : "Un server est déjà en cours d'exécution sur ce port" } diff --git a/moulinette/interfaces/api.py b/moulinette/interfaces/api.py index f7f0f535..69e5d61e 100644 --- a/moulinette/interfaces/api.py +++ b/moulinette/interfaces/api.py @@ -219,7 +219,7 @@ class _ActionsMapPlugin(object): response.set_cookie('session.id', s_id, secure=True) response.set_cookie('session.hashes', s_hashes, secure=True, secret=s_secret) - raise HTTPOKResponse() + raise HTTPOKResponse(m18n.g('logged_in')) def logout(self, profile=None): """Log out from an authenticator profile @@ -241,7 +241,7 @@ class _ActionsMapPlugin(object): # Delete cookie and clean the session response.set_cookie('session.hashes', '', max_age=-1) clean_session(s_id) - raise HTTPOKResponse() + raise HTTPOKResponse(m18n.g('logged_out')) def process(self, _route, arguments={}): """Process the relevant action for the route @@ -445,8 +445,8 @@ class Interface(BaseInterface): app.install(_ActionsMapPlugin(actionsmap)) # Append default routes - app.route(['/api', '/api/'], method='GET', - callback=self.doc, skip=['actionsmap']) +# app.route(['/api', '/api/'], method='GET', +# callback=self.doc, skip=['actionsmap']) # Append additional routes # TODO: Add optional authentication to those routes?