]> git.openstreetmap.org Git - rails.git/commitdiff
Remove 'None' from auth providers
authorAnton Khorev <tony29@yandex.ru>
Thu, 18 Jul 2024 12:30:08 +0000 (15:30 +0300)
committerAnton Khorev <tony29@yandex.ru>
Thu, 18 Jul 2024 12:30:08 +0000 (15:30 +0300)
app/views/accounts/edit.html.erb
lib/auth.rb

index f15bc195c584d7614bfe1548f08fa4a63d24d860..a3e6f943bb9ef714979811c8c1c2e56015990a07 100644 (file)
@@ -19,7 +19,7 @@
   <fieldset class="mb-3">
     <label for="user_auth_provider" class="form-label"><%= t(".external auth") %></label>
     <div class="row">
-      <%= f.select(:auth_provider, Auth.providers, :hide_label => true, :wrapper => { :class => "col-auto mb-0" }) %>
+      <%= f.select(:auth_provider, { t("auth.providers.none") => "" }.merge(Auth.providers), :hide_label => true, :wrapper => { :class => "col-auto mb-0" }) %>
       <%= f.text_field(:auth_uid, :hide_label => true, :wrapper => { :class => "col mb-0" }) %>
     </div>
     <small class="form-text text-body-secondary">(<a href="<%= t ".openid.link" %>" target="_new"><%= t ".openid.link text" %></a>)</small>
index 01167fb1d6695bd9089617f1d1ee259bdb61057c..729772477757ac810113e6abf77a92fead58e904 100644 (file)
@@ -3,7 +3,6 @@ module Auth
 
   def self.providers
     @providers[I18n.locale] ||= {
-      I18n.t("auth.providers.none") => "",
       I18n.t("auth.providers.openid") => "openid"
     }.tap do |providers|
       providers[I18n.t("auth.providers.google")] = "google" if Settings.key?(:google_auth_id)