Skip to content
This repository has been archived by the owner on May 14, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
33 lines (24 loc) · 410 Bytes

README.md

File metadata and controls

executable file
·
33 lines (24 loc) · 410 Bytes

LabAdmin

Manage user rights to access the lab and the machines

Quickstart

Install the labAdmin:

python setup.py install

Add it to the installed apps:

INSTALLED_APPS = [
    # ...
    'rest_framework',
    'oauth2_provider',
    'labAdmin',
]

Add labAdmin urls to your project urls:

urlpatterns = [
    # ...
    include(r'^labAdmin/', include('labAdmin.urls')),
]

Profit!