Skip to content

Commit

Permalink
[Fixes #130] REST API v2 endpoint for GeoStories throws an exception
Browse files Browse the repository at this point in the history
(cherry picked from commit 895e60a)
  • Loading branch information
afabiani committed Apr 14, 2021
1 parent 0c338a4 commit 7a4a1bf
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions mapstore2_adapter/geoapps/geostories/translation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
#########################################################################
#
# Copyright (C) 2021 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################

from modeltranslation.translator import translator, TranslationOptions
from .models import GeoStory


class GeoStoriesTranslationOptions(TranslationOptions):
fields = ()


translator.register(GeoStory, GeoStoriesTranslationOptions)

0 comments on commit 7a4a1bf

Please sign in to comment.