From 8524a172dda81b41bd18799c597adf87b20ae8d6 Mon Sep 17 00:00:00 2001 From: Ynda Jas Date: Thu, 27 Jun 2024 17:07:50 +0100 Subject: [PATCH] Include app descriptions in seeds These are useful for testing out applications page layouts with more realistic length data --- db/seeds.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/seeds.rb b/db/seeds.rb index 94a2267615..97b9de3a5d 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -129,6 +129,7 @@ application = Doorkeeper::Application.create!( name: "Test Application 1", + description: "A concise description of what this app does", redirect_uri: "https://www.gov.uk", ) @@ -139,6 +140,7 @@ application_with_9_permissions = Doorkeeper::Application.create!( name: "Test Application with 9 Permissions", + description: "A description which you could characterise as wordier and will most definitely take up considerably more space in the table of applications", redirect_uri: "https://www.gov.uk", )