discourse-steam-login/plugin.rb

24 lines
729 B
Ruby
Raw Permalink Normal View History

2019-07-29 21:31:07 -04:00
# frozen_string_literal: true
# name: discourse-steam-login
# about: Allows users to login to your forum using Steam Authentication.
# meta_topic_id: 18153
2019-05-13 03:09:21 -04:00
# version: 2.0.1
2019-05-10 03:48:41 -04:00
# author: J. de Faye, tgxworld
2014-07-20 15:01:34 -04:00
# omniauth-openid is not included in core since v2.4.0.beta10
unless defined?(OmniAuth::Strategies::OpenID)
gem "ruby-openid", "2.9.2", require: false
gem "rack-openid", "1.4.2", require: false
gem "omniauth-openid", "2.0.1"
end
gem "omniauth-steam", "1.0.6"
2019-05-10 03:48:41 -04:00
2020-02-03 10:04:10 -05:00
register_svg_icon "fab-steam" if respond_to?(:register_svg_icon)
2018-11-30 09:15:57 -05:00
require_relative "lib/auth/steam_authenticator"
require_relative "lib/validators/enable_steam_logins_validator"
2014-07-20 15:01:34 -04:00
auth_provider authenticator: Auth::SteamAuthenticator.new, icon: "fab-steam"