@@ -813,6 +813,51 @@ export const stagingSeed = async (
813813 } ) ,
814814 } ,
815815 ) ;
816+ const mobilityAccessibilityNeedsProgramQuestion =
817+ await prismaClient . multiselectQuestions . create ( {
818+ data : multiselectQuestionFactory ( angelopolisJurisdiction . id , {
819+ multiselectQuestion : {
820+ text : 'Mobility accessibility needs' ,
821+ description :
822+ 'Some units require at least one resident to have a mobility accessibility need' ,
823+ applicationSection :
824+ MultiselectQuestionsApplicationSectionEnum . programs ,
825+ optOutText : 'None of the above' ,
826+ options : [
827+ { text : 'Wheelchair' , ordinal : 0 } ,
828+ { text : 'Walker' , ordinal : 1 } ,
829+ { text : 'Power chair' , ordinal : 2 } ,
830+ { text : 'Other mobility device' , ordinal : 3 } ,
831+ ] ,
832+ } ,
833+ } ) ,
834+ } ) ;
835+ const hearingVisionAccessibilityNeedsProgramQuestion =
836+ await prismaClient . multiselectQuestions . create ( {
837+ data : multiselectQuestionFactory ( angelopolisJurisdiction . id , {
838+ multiselectQuestion : {
839+ text : 'Hearing/vision accessibility needs' ,
840+ description :
841+ 'Some units require at least one resident to have a hearing / vision accessibility need' ,
842+ applicationSection :
843+ MultiselectQuestionsApplicationSectionEnum . programs ,
844+ optOutText : 'None of the above' ,
845+ options : [
846+ { text : 'Audible and visual doorbells' , ordinal : 0 } ,
847+ {
848+ text : 'Fire and smoke alarms with hard wired strobes' ,
849+ ordinal : 1 ,
850+ } ,
851+ {
852+ text : 'Documents in screen-reader accessible format' ,
853+ ordinal : 2 ,
854+ } ,
855+ { text : 'Documents in large text or braille' , ordinal : 3 } ,
856+ ] ,
857+ } ,
858+ } ) ,
859+ } ) ;
860+
816861 const multiselectQuestionPrograms =
817862 await prismaClient . multiselectQuestions . create ( {
818863 data : multiselectQuestionFactory ( mainJurisdiction . id , {
@@ -932,6 +977,8 @@ export const stagingSeed = async (
932977 cityEmployeeQuestion ,
933978 workInCityQuestion ,
934979 multiselectQuestionPrograms ,
980+ mobilityAccessibilityNeedsProgramQuestion ,
981+ hearingVisionAccessibilityNeedsProgramQuestion ,
935982 ] ,
936983 applications : [
937984 await applicationFactory ( {
0 commit comments