diff --git a/app/frontend/images/sso_apps/Forge.png b/app/frontend/images/sso_apps/Forge.png new file mode 100644 index 00000000..a6cbcdda Binary files /dev/null and b/app/frontend/images/sso_apps/Forge.png differ diff --git a/app/models/special_app_cards/flavortown.rb b/app/models/special_app_cards/flavortown.rb deleted file mode 100644 index 8338bb58..00000000 --- a/app/models/special_app_cards/flavortown.rb +++ /dev/null @@ -1,19 +0,0 @@ -# frozen_string_literal: true - -module SpecialAppCards - class Flavortown < Base - def visible? - identity.ysws_eligible != false && Flipper.enabled?(:flavortown, identity) - end - - def friendly_name = "Flavortown" - - def tagline = "anyone can cook!" - - def icon = "flavortown.png" - - def url = "https://flavortown.hackclub.com" - - def launch_text = "to the kitchen!" - end -end diff --git a/app/models/special_app_cards/forge.rb b/app/models/special_app_cards/forge.rb new file mode 100644 index 00000000..908fb8b1 --- /dev/null +++ b/app/models/special_app_cards/forge.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true +module SpecialAppCards + class Forge < Base + def visible? + identity.ysws_eligible != false + end + def friendly_name = "Forge" + def tagline = "This is program where teens like yourself can design and build hardware projects, and get them funded!" + def icon = "Forge.png" + def icon_background = "#1c1b1b" + def url = "https://forge.hackclub.com/" + def launch_text = "Get forging now" + end +end