mirror of https://github.com/doccano/doccano.git
Browse Source
Merge pull request #489 from CatalystCode/enhancement/single-class-classification
Merge pull request #489 from CatalystCode/enhancement/single-class-classification
Enhancement/Single class classificationpull/837/head
Hiroki Nakayama
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 97 additions and 7 deletions
Split View
Diff Options
-
18app/api/migrations/0002_project_single_class_classification.py
-
1app/api/models.py
-
2app/api/serializers.py
-
38app/api/tests/test_api.py
-
16app/api/views.py
-
4app/server/static/components/annotationMixin.js
-
12app/server/static/components/document_classification.vue
-
13app/server/static/components/projects.vue
@ -0,0 +1,18 @@ |
|||
# Generated by Django 2.1.11 on 2019-12-06 08:36 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('api', '0001_initial'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='project', |
|||
name='single_class_classification', |
|||
field=models.BooleanField(default=False), |
|||
), |
|||
] |
Write
Preview
Loading…
Cancel
Save