Skip to content

Commit

Permalink
rename app directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jh-RLI committed Dec 14, 2024
1 parent 0655232 commit 5355fa8
Show file tree
Hide file tree
Showing 13 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion sparql_query/apps.py → oekg/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

class SparqlQueryConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "sparql_query"
name = "oekg"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions sparql_query/views.py → oekg/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
from django.views.decorators.http import require_GET

from oeplatform.settings import OEKG_SPARQL_ENDPOINT_URL
from sparql_query.utils import validate_sparql_query
from oekg.utils import validate_sparql_query


def main_view(request):
response = render(request, "sparql_query/main.html")
response = render(request, "oekg/main.html")
response["Content-Type"] = "text/html; charset=utf-8"
return response

Expand Down

0 comments on commit 5355fa8

Please sign in to comment.