mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 09:28:27 -04:00
We were getting all letter logos from a method in the email branding client. Since we will be adding more client methods to deal with letters, it makes things clearer to separate the email and letter branding clients.
14 lines
305 B
Python
14 lines
305 B
Python
from app.notify_client import NotifyAdminAPIClient
|
|
|
|
|
|
class LetterBrandingClient(NotifyAdminAPIClient):
|
|
|
|
def __init__(self):
|
|
super().__init__("a" * 73, "b")
|
|
|
|
def get_letter_branding(self):
|
|
return self.get(url='/dvla_organisations')
|
|
|
|
|
|
letter_branding_client = LetterBrandingClient()
|