Skip to content

Commit

Permalink
fix(fixtures): change mst to cst
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Jul 11, 2024
1 parent 5c6600d commit 24957ee
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions benefits/core/migrations/local_fixtures.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"model": "core.pemdata",
"pk": 1,
"fields": {
"label": "(MST) eligibility server public key",
"label": "(CST) eligibility server public key",
"text_secret_name": null,
"remote_url": "https://raw.githubusercontent.com/cal-itp/eligibility-server/main/keys/server.pub"
}
Expand Down Expand Up @@ -59,30 +59,30 @@
"pk": 1,
"fields": {
"name": "senior",
"label": "(MST) Senior Discount",
"label": "(CST) Senior Discount",
"group_id": "group123",
"enrollment_success_template": "enrollment/success--mst.html"
"enrollment_success_template": "enrollment/success--cst.html"
}
},
{
"model": "core.eligibilitytype",
"pk": 2,
"fields": {
"name": "veteran",
"label": "(MST) Veteran Discount",
"label": "(CST) Veteran Discount",
"group_id": "group123",
"enrollment_success_template": "enrollment/success--mst.html"
"enrollment_success_template": "enrollment/success--cst.html"
}
},
{
"model": "core.eligibilitytype",
"pk": 3,
"fields": {
"name": "courtesy_card",
"label": "(MST) Courtesy Card Discount",
"name": "agency_card",
"label": "(CST) Agency Card Discount",
"group_id": "group123",
"enrollment_index_template": "enrollment/index--agency-card.html",
"enrollment_success_template": "enrollment/success--mst-courtesy-card.html"
"enrollment_success_template": "enrollment/success--cst-agency-card.html"
}
},
{
Expand All @@ -96,14 +96,14 @@
"expiration_days": 5,
"expiration_reenrollment_days": 3,
"reenrollment_error_template": "enrollment/reenrollment-error--calfresh.html",
"enrollment_success_template": "enrollment/success--mst.html"
"enrollment_success_template": "enrollment/success--cst.html"
}
},
{
"model": "core.eligibilityverifier",
"pk": 1,
"fields": {
"name": "(MST) oauth claims via Login.gov",
"name": "(CST) oauth claims via Login.gov",
"display_order": 1,
"active": true,
"api_url": null,
Expand All @@ -124,7 +124,7 @@
"model": "core.eligibilityverifier",
"pk": 2,
"fields": {
"name": "(MST) VA.gov - veteran",
"name": "(CST) VA.gov - veteran",
"display_order": 3,
"active": true,
"api_url": null,
Expand All @@ -145,30 +145,30 @@
"model": "core.eligibilityverifier",
"pk": 3,
"fields": {
"name": "(MST) eligibility server verifier",
"name": "(CST) eligibility server verifier",
"display_order": 4,
"active": true,
"api_url": "http://server:8000/verify",
"api_auth_header": "X-Server-API-Key",
"api_auth_key_secret_name": "courtesy-card-verifier-api-auth-key",
"api_auth_key_secret_name": "agency-card-verifier-api-auth-key",
"eligibility_type": 3,
"public_key": 1,
"jwe_cek_enc": "A256CBC-HS512",
"jwe_encryption_alg": "RSA-OAEP",
"jws_signing_alg": "RS256",
"auth_provider": null,
"selection_label_template": "eligibility/includes/selection-label--mst-courtesy-card.html",
"start_template": "eligibility/start--mst-courtesy-card.html",
"form_class": "benefits.eligibility.forms.MSTCourtesyCard",
"unverified_template": "eligibility/unverified--mst-courtesy-card.html",
"help_template": "core/includes/help--mst-courtesy-card.html"
"selection_label_template": "eligibility/includes/selection-label--cst-agency-card.html",
"start_template": "eligibility/start--cst-agency-card.html",
"form_class": "benefits.eligibility.forms.CSTAgencyCard",
"unverified_template": "eligibility/unverified--cst-agency-card.html",
"help_template": "core/includes/help--cst-agency-card.html"
}
},
{
"model": "core.eligibilityverifier",
"pk": 7,
"fields": {
"name": "(MST) CalFresh oauth claims via Login.gov",
"name": "(CST) CalFresh oauth claims via Login.gov",
"display_order": 2,
"active": true,
"api_url": null,
Expand All @@ -190,10 +190,10 @@
"model": "core.paymentprocessor",
"pk": 1,
"fields": {
"name": "(MST) test payment processor",
"name": "(CST) test payment processor",
"api_base_url": "http://server:8000",
"client_id": "",
"client_secret_name": "mst-payment-processor-client-secret",
"client_secret_name": "cst-payment-processor-client-secret",
"audience": "",
"card_tokenize_url": "http://server:8000/static/tokenize.js",
"card_tokenize_func": "tokenize",
Expand All @@ -204,19 +204,19 @@
"model": "core.transitagency",
"pk": 1,
"fields": {
"slug": "mst",
"short_name": "MST (local)",
"long_name": "Monterey-Salinas Transit (local)",
"agency_id": "mst",
"info_url": "https://mst.org/benefits",
"phone": "888-678-2871",
"slug": "cst",
"short_name": "CST (local)",
"long_name": "California State Transit (local)",
"agency_id": "cst",
"info_url": "https://www.agency-website.com",
"phone": "1-800-555-5555",
"active": true,
"payment_processor": 1,
"private_key": 3,
"public_key": 4,
"jws_signing_alg": "RS256",
"index_template": "core/index--mst.html",
"eligibility_index_template": "eligibility/index--mst.html",
"index_template": "core/index--cst.html",
"eligibility_index_template": "eligibility/index--cst.html",
"eligibility_types": [1, 7, 2, 3],
"eligibility_verifiers": [1, 7, 2, 3]
}
Expand Down

0 comments on commit 24957ee

Please sign in to comment.