Remove 'None' from auth providers

This commit is contained in:
Anton Khorev 2024-07-18 15:30:08 +03:00
parent 05e5335716
commit c3ad502f90
2 changed files with 1 additions and 2 deletions

View 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>

View 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)