Skip to content

Commit e64c025

Browse files
authored
feat(WT-930): add Labs tag to notes to allow us to call out Firefox Labs items in Relnotes (#1215)
1 parent 652fb68 commit e64c025

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Generated by Django 4.2.24 on 2026-03-19 13:57
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("rna", "0011_alter_country_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="note",
14+
name="tag",
15+
field=models.CharField(
16+
blank=True,
17+
choices=[
18+
("New", "New"),
19+
("Changed", "Changed"),
20+
("HTML5", "HTML5"),
21+
("Feature", "Feature"),
22+
("Language", "Language"),
23+
("Developer", "Developer"),
24+
("Enterprise", "Enterprise"),
25+
("Fixed", "Fixed"),
26+
("Community", "Community"),
27+
("Labs", "Labs"),
28+
],
29+
max_length=255,
30+
),
31+
),
32+
]

nucleus/rna/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class Meta:
166166

167167

168168
class Note(SaveToGithubModel):
169-
TAGS = ("New", "Changed", "HTML5", "Feature", "Language", "Developer", "Enterprise", "Fixed", "Community")
169+
TAGS = ("New", "Changed", "HTML5", "Feature", "Language", "Developer", "Enterprise", "Fixed", "Community", "Labs")
170170

171171
bug = models.IntegerField(null=True, blank=True)
172172
note = models.TextField(blank=True)

0 commit comments

Comments
 (0)