Skip to content

Commit

Permalink
fix(ds): merge migrations and change import models in cms_plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
igr-santos committed Jun 10, 2024
1 parent 0c0f39b commit 57151ae
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
3 changes: 1 addition & 2 deletions app/contrib/ds/cms_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@

from cms.plugin_base import CMSPluginBase
from cms.plugin_pool import plugin_pool
from cms.models import Page

from .models import Navbar, Menu
from .models import Navbar, Menu, MenuExtraLink
from .forms import MenuForm, MenuExtraLinkForm


Expand Down
14 changes: 14 additions & 0 deletions app/contrib/ds/migrations/0014_merge_20240610_1402.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 4.2 on 2024-06-10 14:02

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('ds', '0012_menuextralink'),
('ds', '0013_merge_0012_menu_attributes_0012_seo'),
]

operations = [
]

0 comments on commit 57151ae

Please sign in to comment.