You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
The content_type_id for the EmailNotificationForm-Plugin is wrong.
Currently the content_type_id for the EmailNotificationForm-Plugin is the same as for the FormPlugin-Plugin.
From my db:
DB> select * from django_content_type where app_label in ('aldryn_forms', 'email_notifications');
+-----+---------------------+-----------------------------+
| id | app_label | model |
+-----+---------------------+-----------------------------+
...
| 121 | aldryn_forms | formplugin |
...
| 126 | email_notifications | emailnotification |
| 127 | email_notifications | emailnotificationformplugin |
+-----+---------------------+-----------------------------+
DB> select * from auth_permission where content_type_id=121;
+-----+-------------------------------------------+-----------------+------------------------------------+
| id | name | content_type_id | codename |
+-----+-------------------------------------------+-----------------+------------------------------------+
| 367 | Can add email notification form plugin | 121 | add_emailnotificationformplugin |
| 349 | Can add form plugin | 121 | add_formplugin |
| 368 | Can change email notification form plugin | 121 | change_emailnotificationformplugin |
| 350 | Can change form plugin | 121 | change_formplugin |
| 369 | Can delete email notification form plugin | 121 | delete_emailnotificationformplugin |
| 351 | Can delete form plugin | 121 | delete_formplugin |
+-----+-------------------------------------------+-----------------+------------------------------------+
DB> select * from auth_permission where content_type_id=127;
Empty set (0.00 sec)
Installed:
django: 1.11.12
django-cms: 3.5.2
aldryn-forms: 3.0.3
The text was updated successfully, but these errors were encountered:
The content_type_id for the EmailNotificationForm-Plugin is wrong.
Currently the content_type_id for the EmailNotificationForm-Plugin is the same as for the FormPlugin-Plugin.
From my db:
Installed:
The text was updated successfully, but these errors were encountered: