mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
25 lines
472 B
Python
25 lines
472 B
Python
# Django import
|
|
from django.db import models
|
|
|
|
# Module import
|
|
from . import BaseModel
|
|
|
|
|
|
class FileAsset(BaseModel):
|
|
"""
|
|
A file asset.
|
|
"""
|
|
|
|
attributes = models.JSONField(default=dict)
|
|
asset = models.FileField(upload_to="library-assets")
|
|
|
|
class Meta:
|
|
verbose_name = "File Asset"
|
|
verbose_name_plural = "File Assets"
|
|
db_table = "file_asset"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return self.asset
|
|
|