new files
This commit is contained in:
parent
abd7cfa35c
commit
9cc01d0643
|
@ -120,6 +120,22 @@
|
||||||
"detail": "django.db",
|
"detail": "django.db",
|
||||||
"documentation": {}
|
"documentation": {}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "migrations",
|
||||||
|
"importPath": "django.db",
|
||||||
|
"description": "django.db",
|
||||||
|
"isExtraImport": true,
|
||||||
|
"detail": "django.db",
|
||||||
|
"documentation": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "models",
|
||||||
|
"importPath": "django.db",
|
||||||
|
"description": "django.db",
|
||||||
|
"isExtraImport": true,
|
||||||
|
"detail": "django.db",
|
||||||
|
"documentation": {}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "models",
|
"label": "models",
|
||||||
"importPath": "django.db",
|
"importPath": "django.db",
|
||||||
|
@ -1077,6 +1093,15 @@
|
||||||
"detail": "back.object.migrations.0004_alter_clickablearea_target_name",
|
"detail": "back.object.migrations.0004_alter_clickablearea_target_name",
|
||||||
"documentation": {}
|
"documentation": {}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "Migration",
|
||||||
|
"kind": 6,
|
||||||
|
"importPath": "back.object.migrations.0005_scene3d_hdr_gainmap_scene3d_hdr_json_and_more",
|
||||||
|
"description": "back.object.migrations.0005_scene3d_hdr_gainmap_scene3d_hdr_json_and_more",
|
||||||
|
"peekOfCode": "class Migration(migrations.Migration):\n dependencies = [\n ('object', '0004_alter_clickablearea_target_name'),\n ]\n operations = [\n migrations.AddField(\n model_name='scene3d',\n name='hdr_gainmap',\n field=models.FileField(blank=True, null=True, upload_to=''),\n ),",
|
||||||
|
"detail": "back.object.migrations.0005_scene3d_hdr_gainmap_scene3d_hdr_json_and_more",
|
||||||
|
"documentation": {}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Scene3DAdmin",
|
"label": "Scene3DAdmin",
|
||||||
"kind": 6,
|
"kind": 6,
|
||||||
|
|
|
@ -35,9 +35,10 @@ class Scene3D(models.Model):
|
||||||
max_distance = models.IntegerField(
|
max_distance = models.IntegerField(
|
||||||
validators=[MinValueValidator(2), MaxValueValidator(1000)], blank=True, null=True
|
validators=[MinValueValidator(2), MaxValueValidator(1000)], blank=True, null=True
|
||||||
)
|
)
|
||||||
gainmap = models.FileField()
|
|
||||||
json = models.FileField()
|
hdr_gainmap = models.FileField(blank=True, null=True)
|
||||||
webp = models.FileField()
|
hdr_json = models.FileField(blank=True, null=True)
|
||||||
|
hdr_webp = models.FileField(blank=True, null=True)
|
||||||
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
import { defineStore } from 'pinia'
|
||||||
|
|
||||||
|
export const usePromoScene = defineStore('promo_scene', {
|
||||||
|
state: () => {
|
||||||
|
return [] as PromoScene[]
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
setData(data: PromoScene[]) {
|
||||||
|
this.$state = data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
Loading…
Reference in New Issue