From de94794986679969c45b9d26affc4d08fbb1d9bb Mon Sep 17 00:00:00 2001 From: ChrisBAshton Date: Thu, 16 Jan 2025 13:35:04 +0000 Subject: [PATCH] Adding logo and brand colour Trello: https://trello.com/c/LeyNfXgg --- app/models/organisation_brand_colour.rb | 5 +++++ app/models/organisation_logo_type.rb | 3 +++ 2 files changed, 8 insertions(+) diff --git a/app/models/organisation_brand_colour.rb b/app/models/organisation_brand_colour.rb index 6a331f7ac46..599b07ac2a2 100644 --- a/app/models/organisation_brand_colour.rb +++ b/app/models/organisation_brand_colour.rb @@ -182,4 +182,9 @@ def self.find(class_name) title: "Serious Fraud Office", class_name: "serious-fraud-office", ) + Gds = create!( + id: 36, + title: "GDS", + class_name: "government-digital-service", + ) end diff --git a/app/models/organisation_logo_type.rb b/app/models/organisation_logo_type.rb index 1475584df16..6cbde06f1e6 100644 --- a/app/models/organisation_logo_type.rb +++ b/app/models/organisation_logo_type.rb @@ -55,4 +55,7 @@ def self.find(class_name) PrimeMinistersOffice10DowningStreet = create!( id: 16, title: "Prime Minister's Office, 10 Downing Street", class_name: "no10", ) + GdsCrest = create!( + id: 17, title: "GDS", class_name: "gds", + ) end