forked from divio/aldryn-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed cms_app to cms_apps (divio#103)
- Loading branch information
Showing
2 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
from cms.app_base import CMSApp | ||
from cms.apphook_pool import apphook_pool | ||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
|
||
class FormsApp(CMSApp): | ||
|
||
name = _('Forms') | ||
urls = ['aldryn_forms.urls'] | ||
|
||
apphook_pool.register(FormsApp) | ||
# djangoCMS < 3.2 compatibility | ||
from . import cms_apps # NOQA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# -*- coding: utf-8 -*- | ||
from cms.app_base import CMSApp | ||
from cms.apphook_pool import apphook_pool | ||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
|
||
class FormsApp(CMSApp): | ||
|
||
name = _('Forms') | ||
urls = ['aldryn_forms.urls'] | ||
|
||
apphook_pool.register(FormsApp) |