pull down main

This commit is contained in:
Andrew Shumway
2024-05-08 09:03:24 -06:00
8 changed files with 421 additions and 325 deletions

View File

@@ -13,8 +13,9 @@ import humanize
import markdown
import pytz
from bs4 import BeautifulSoup
from flask import Markup, render_template_string, url_for
from flask import render_template_string, url_for
from flask.helpers import get_root_path
from markupsafe import Markup
from notifications_utils.field import Field
from notifications_utils.formatters import make_quotes_smart
from notifications_utils.formatters import nl2br as utils_nl2br

View File

@@ -4,12 +4,13 @@ from itertools import chain
from numbers import Number
import pytz
from flask import Markup, render_template, request
from flask import render_template, request
from flask_login import current_user
from flask_wtf import FlaskForm as Form
from flask_wtf.file import FileAllowed
from flask_wtf.file import FileField as FileField_wtf
from flask_wtf.file import FileSize
from markupsafe import Markup
from notifications_utils.formatters import strip_all_whitespace
from notifications_utils.insensitive_dict import InsensitiveDict
from notifications_utils.recipients import InvalidPhoneError, validate_phone_number

View File

@@ -1,5 +1,6 @@
from flask import Markup, abort, flash, redirect, render_template, request, url_for
from flask import abort, flash, redirect, render_template, request, url_for
from flask_login import current_user
from markupsafe import Markup
from app import (
api_key_api_client,

View File

@@ -3,7 +3,6 @@
from functools import partial
from flask import (
Markup,
Response,
abort,
jsonify,
@@ -15,6 +14,7 @@ from flask import (
url_for,
)
from flask_login import current_user
from markupsafe import Markup
from notifications_utils.template import EmailPreviewTemplate, SMSBodyPreviewTemplate
from app import (

View File

@@ -5,7 +5,6 @@ import uuid
import jwt
import requests
from flask import (
Markup,
Response,
abort,
current_app,
@@ -17,6 +16,7 @@ from flask import (
url_for,
)
from flask_login import current_user
from markupsafe import Markup
from notifications_utils.url_safe_token import generate_token
from app import login_manager, user_api_client

View File

@@ -142,6 +142,20 @@ Notify.gov
Notify.gov is a new shared service currently being piloted by the Public Benefits Studio, within Technology
Transformation Services at the General Services Administration.
</p>
<h2 class="font-heading-xl margin-top-0 margin-bottom-3">
Who's Eligible?
</h2>
<p class="usa-body">
Eligible partners include federal agencies as well as state, local, territorial, tribal agencies
administering federally funded programs. As part of the onboarding process, non-federal
programs must specify the federal program that the messages they want to send are related
to. TTS will also seek concurrence from the federal funder.
</p>
<p class="usa-body">
We prioritize partnerships focused on use cases related to increasing transparency and
reducing the burden of navigating government programs for low income individuals and
families.
</p>
</section>
<!-- <div class="product-page-intro"></div> -->

711
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,9 +10,9 @@ package-mode = false
python = "^3.12.2"
ago = "~=0.0.95"
beautifulsoup4 = "^4.12.3"
blinker = "~=1.7"
blinker = "~=1.8"
exceptiongroup = "==1.2.1"
flask = "~=2.3"
flask = "~=3.0"
flask-basicauth = "~=0.2"
flask-login = "^0.6"
flask-talisman = "*"
@@ -35,7 +35,7 @@ pyproj = "==3.6.1"
python-dotenv = "==1.0.1"
pytz = "^2024.1"
rtreelib = "==0.2.0"
werkzeug = "^3.0.1"
werkzeug = "^3.0.3"
wtforms = "~=3.1"
markdown = "^3.5.2"
@@ -56,7 +56,7 @@ pre-commit = "^3.6.0"
pytest = "^8.1.1"
pytest-env = "^1.1.3"
pytest-mock = "^3.14.0"
pytest-playwright = "^0.4.4"
pytest-playwright = "^0.5.0"
pytest-xdist = "^3.5.0"
radon = "^6.0.1"
requests-mock = "^1.11.0"