Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove strikethrough as an option for rich text #15503

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

# Generated by Django 4.2.16 on 2024-11-15 09:19

from django.db import migrations

import wagtail.blocks
import wagtail.fields
import wagtail.images.blocks


class Migration(migrations.Migration):
dependencies = [
("mozorg", "0004_alter_leadershippage_leadership_sections"),
]

operations = [
migrations.AlterField(
model_name="leadershippage",
name="leadership_sections",
field=wagtail.fields.StreamField(
[
(
"section",
wagtail.blocks.StructBlock(
[
(
"title",
wagtail.blocks.CharBlock(
blank=True,
help_text="Title for the section of the page e.g. 'Mozilla Corporation' or 'Mozilla Foundation.",
max_length=255,
null=True,
),
),
(
"leadership_group",
wagtail.blocks.ListBlock(
wagtail.blocks.StructBlock(
[
(
"title",
wagtail.blocks.CharBlock(
char_max_length=255,
help_text="Leadership group title, e.g. 'Executive Steering Committee' or 'Senior Leadership'.", # noqa: E501
required=False,
),
),
(
"leaders",
wagtail.blocks.ListBlock(
wagtail.blocks.StructBlock(
[
(
"name",
wagtail.blocks.CharBlock(
char_max_length=255,
placeholder="Enter the person's full name.",
),
),
(
"headshot",
wagtail.blocks.StructBlock(
[
(
"image",
wagtail.images.blocks.ImageChooserBlock(
help_text="A headshot image of the person."
),
),
(
"image_alt_text",
wagtail.blocks.CharBlock(
char_max_length=255,
help_text="Alt text for the headshot image.",
),
),
(
"photos_link",
wagtail.blocks.URLBlock(
char_max_length=255,
help_text="External link to a .zip file of photos of the person.",
required=False,
),
),
]
),
),
(
"job_title",
wagtail.blocks.CharBlock(
char_max_length=255,
required=False,
),
),
(
"biography",
wagtail.blocks.RichTextBlock(
features=[
"h2",
"h3",
"hr",
"bold",
"italic",
"code",
"blockquote",
"link",
"ol",
"ul",
"image",
],
help_text="A biography limited to a few short paragraphs. Links and formatting are supported.", # noqa: E501
required=False,
),
),
(
"external_links",
wagtail.blocks.ListBlock(
wagtail.blocks.StructBlock(
[
(
"url",
wagtail.blocks.URLBlock(
char_max_length=255,
help_text="Link to the person's website or social media account.", # noqa: E501
required=False,
),
),
(
"type",
wagtail.blocks.ChoiceBlock(
choices=[
(
"url mastodon",
"Mastodon",
),
(
"url twitter",
"Twitter",
),
(
"url website",
"Website",
),
],
help_text="Selects a visual icon type for the link.",
required=False,
),
),
(
"text",
wagtail.blocks.CharBlock(
char_max_length=255,
help_text="Text to display for the link.",
required=False,
),
),
]
),
max_num=5,
min_num=0,
),
),
]
),
min_num=1,
),
),
]
),
min_num=1,
),
),
]
),
)
],
blank=True,
null=True,
),
),
]
1 change: 0 additions & 1 deletion bedrock/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2375,7 +2375,6 @@ def lazy_wagtail_langs():
"hr",
"bold",
"italic",
"strikethrough",
"code",
"blockquote",
"link",
Expand Down