Skip to content

Commit

Permalink
remove CUSTOM as a default editor
Browse files Browse the repository at this point in the history
  • Loading branch information
zlavergne committed Feb 4, 2020
1 parent 9b440c9 commit 64cd99c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions server/models/postgis/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,15 @@ class Project(db.Model):
Editors.RAPID.value,
Editors.JOSMMAPWITHAI.value,
Editors.POTLATCH_2.value,
Editors.FIELD_PAPERS.value,
Editors.CUSTOM.value],
Editors.FIELD_PAPERS.value],
index=True, nullable=False)
validation_editors = db.Column(ARRAY(db.Integer), default=[
Editors.ID.value,
Editors.JOSM.value,
Editors.RAPID.value,
Editors.JOSMMAPWITHAI.value,
Editors.POTLATCH_2.value,
Editors.FIELD_PAPERS.value,
Editors.CUSTOM.value],
Editors.FIELD_PAPERS.value],
index=True, nullable=False)

# Stats
Expand Down

0 comments on commit 64cd99c

Please sign in to comment.