Skip to content

Commit

Permalink
feat: Add an 'Overcome by events' feedback type
Browse files Browse the repository at this point in the history
  • Loading branch information
pselkirk committed Jul 26, 2023
1 parent 9f79467 commit 0b373d2
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
10 changes: 10 additions & 0 deletions ietf/name/fixtures/names.json
Original file line number Diff line number Diff line change
Expand Up @@ -11086,6 +11086,16 @@
"model": "name.feedbacktypename",
"pk": "nomina"
},
{
"fields": {
"desc": "",
"name": "Overcome by events",
"order": 0,
"used": true
},
"model": "name.feedbacktypename",
"pk": "obe"
},
{
"fields": {
"desc": "",
Expand Down
18 changes: 18 additions & 0 deletions ietf/name/migrations/0004_auto_20230726_1141.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.3 on 2023-07-26 18:41

from django.db import migrations

from ietf.name.models import FeedbackTypeName

def add_obe(apps, schema_editor):
name = FeedbackTypeName(slug='obe', name='Overcome by events')
name.save()

class Migration(migrations.Migration):
dependencies = [
("name", "0003_populate_telechatagendasectionname"),
]

operations = [
migrations.RunPython(add_obe),
]
4 changes: 2 additions & 2 deletions ietf/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright The IETF Trust 2007-2022, All Rights Reserved
# Copyright The IETF Trust 2007-2023, All Rights Reserved
# -*- coding: utf-8 -*-


Expand Down Expand Up @@ -802,7 +802,7 @@ def skip_unreadable_post(record):
NOMCOM_FROM_EMAIL = 'nomcom-chair-{year}@ietf.org'
OPENSSL_COMMAND = '/usr/bin/openssl'
DAYS_TO_EXPIRE_NOMINATION_LINK = ''
NOMINEE_FEEDBACK_TYPES = ['comment', 'questio', 'nomina']
NOMINEE_FEEDBACK_TYPES = ['comment', 'questio', 'nomina', 'obe']

# SlideSubmission settings
SLIDE_STAGING_PATH = '/a/www/www6s/staging/'
Expand Down

0 comments on commit 0b373d2

Please sign in to comment.