extensions-website/apitokens/apps.py
Dalai Felinto 4ef93583a2 API Tokens (#134)
This allows users to create tokens to be used with the API.

The goal is to use those for the API that will allow users to upload new versions of an extension.

The Tokens can be created/managed on the user profile.

Note: The API entries that to actually use these tokens is handled separately on !138.

Ref !134
Reviewed-by: Oleg-Komarov
2024-05-27 12:53:29 +02:00

7 lines
147 B
Python

from django.apps import AppConfig
class TokensConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'apitokens'