renmae of plugin

This commit is contained in:
Matthias 2021-09-19 14:54:55 +02:00
parent c222b9c296
commit 4c8318440c
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -4,12 +4,12 @@ from django.http import HttpResponse
from django.utils.translation import ugettext_lazy as _
class SimpleIntegrationPlugin(SettingsMixin, UrlsMixin, IntegrationPlugin):
class SampleIntegrationPlugin(SettingsMixin, UrlsMixin, IntegrationPlugin):
"""
An basic integration plugin
An full integration plugin
"""
PLUGIN_NAME = "SimpleIntegrationPlugin"
PLUGIN_NAME = "SampleIntegrationPlugin"
def view_test(self, request):
return HttpResponse(f'Hi there {request.user.username} this works')