mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
c1f7a14c95
There are some missing translatable docstrings of commands and modules. Fixes: https://pagure.io/freeipa/issue/7592 Reviewed-By: Tibor Dudlak <tdudlak@redhat.com>
37 lines
845 B
Python
37 lines
845 B
Python
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
import logging
|
|
|
|
from ipalib import Command
|
|
from ipalib.request import context
|
|
from ipalib.plugable import Registry
|
|
from ipalib.text import _
|
|
|
|
__doc__ = _("""
|
|
Session Support for IPA
|
|
""")
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
register = Registry()
|
|
|
|
|
|
@register()
|
|
class session_logout(Command):
|
|
__doc__ = _('RPC command used to log the current user out of their'
|
|
' session.')
|
|
NO_CLI = True
|
|
|
|
def execute(self, *args, **options):
|
|
ccache_name = getattr(context, 'ccache_name', None)
|
|
if ccache_name is None:
|
|
logger.debug('session logout command: no ccache_name found')
|
|
else:
|
|
delattr(context, 'ccache_name')
|
|
|
|
setattr(context, 'logout_cookie', 'MagBearerToken=')
|
|
|
|
return dict(result=None)
|