przekazanie do sekretów do env - test only
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jakub K 2024-01-22 21:46:11 +01:00
parent 22728403ee
commit 389b5ff90a
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ router.register(r'joblistings', views.JobListingViewSet)
router.register(r'skilllevels', views.SkillLevelsViewSet)
router.register(r'companylogo', views.CompanyLogoViewSet)
router.register(r'skills', views.SkillViewset)
router.register(r'auth', views.GetAuthTokenView)
# Twoje urlpatterns

View File

@ -2,7 +2,7 @@ from rest_framework import viewsets, permissions, authentication
from rest_framework.response import Response
from jobposting.models import JobListing, SkillLevels, CompanyLogo, Skill
from core.models import MyUser, AnonymousUserData
from rest_framework import status,
from rest_framework import status
from jobposting.permissions import ClientCredentialPermission
from oauth2_provider.contrib.rest_framework import TokenHasReadWriteScope, OAuth2Authentication
from .auth import OAuth2ClientCredentialAuthentication