feat: RBAC + SAML support

This commit is contained in:
Markos Gogoulos
2025-04-05 12:44:21 +03:00
committed by GitHub
parent 8fecccce1c
commit 05414f66c7
158 changed files with 6423 additions and 106 deletions

View File

@@ -13,11 +13,12 @@ class TestX(TestCase):
def setUp(self):
self.password = 'this_is_a_fake_password'
self.user = create_account(password=self.password)
def test_file_upload(self):
client = Client()
client.login(username=self.user, password=self.password)
client.login(username=self.user.username, password=self.password)
# use both ways, form + API to upload a new media file
# while video transcoding through ffmpeg takes place asynchronously