end
end
- def user_image_url(user, options = {})
+ def user_image_url(user)
if user.image_use_gravatar
- user_gravatar_url(user, options)
+ user_gravatar_url(user)
elsif user.avatar.attached?
polymorphic_url(user_avatar_variant(user, :resize_to_limit => [100, 100]), :host => Settings.server_url)
else
def auth_button(provider, options = {})
link_to(
- image_tag("#{provider}.svg",
+ image_tag("auth_providers/#{provider}.svg",
:alt => t("application.auth_providers.#{provider}.alt"),
:class => "rounded-1",
:size => "36"),
auth_path(options.merge(:provider => provider)),
:method => :post,
- :class => "auth_button btn btn-light p-2",
+ :class => "auth_button btn btn-outline-secondary border p-2",
:title => t("application.auth_providers.#{provider}.title")
)
end
def auth_button_preferred(provider, options = {})
link_to(
- image_tag("#{provider}.svg",
+ image_tag("auth_providers/#{provider}.svg",
:alt => t("application.auth_providers.#{provider}.alt"),
:class => "rounded-1 me-3",
:size => "36") + t("application.auth_providers.#{provider}.title"),