Commit 38238809 authored by Antoine Millet's avatar Antoine Millet
Browse files

Added an empty handler for new SPV role.

parent d8c83a5b
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -111,6 +111,14 @@ class OnlineCCHandler(CCHandler):
            raise RightError('You are not allowed to do this action.')


class SpvHandler(OnlineCCHandler):
    '''
    Handler binded to 'spv' role.
    '''

    pass


class HypervisorHandler(OnlineCCHandler):
    '''
    Handler binded to 'hv' role.
@@ -828,6 +836,7 @@ class WelcomeHandler(CCHandler):
        'cli': CliHandler,
        'hv': HypervisorHandler,
        'host': None,
        'spv': SpvHandler,
    }

    @listed