Skip to content

Commit

Permalink
Fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chiatt committed Aug 4, 2020
1 parent 029141d commit d7793de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arches/app/views/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ def get(self, request):
return response


class OntolgyPropery(APIBase):
class OntolgyProperty(APIBase):
def get(self, request):
domain_ontology_class = request.GET.get("domain_ontology_class", None)
range_ontology_class = request.GET.get("range_ontology_class", None)
Expand Down
2 changes: 1 addition & 1 deletion arches/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
name="mvt",
),
url(r"^images$", api.Images.as_view(), name="images"),
url(r"^ontology_properties$", api.OntolgyPropery.as_view(), name="ontology_properties"),
url(r"^ontology_properties$", api.OntolgyProperty.as_view(), name="ontology_properties"),
url(r"^tileserver/(?P<path>.*)$", TileserverProxyView.as_view()),
url(r"^history/$", ResourceActivityStreamCollectionView.as_view(), name="as_stream_collection"),
url(r"^history/(?P<page>[0-9]+)$", ResourceActivityStreamPageView.as_view(), name="as_stream_page"),
Expand Down

0 comments on commit d7793de

Please sign in to comment.