Sha256: febdb8392c3dc47ffbbf331e0d75895c468c5002323ce606a22dd6f549784fec
Contents?: true
Size: 664 Bytes
Versions: 21
Compression:
Stored size: 664 Bytes
Contents
module RubyApp module Elements module Pages module Authentication module OpenId require 'ruby_app/elements/pages/authentication/open_id/authentication_page' require 'ruby_app/session' class EmailAuthenticationPage < RubyApp::Elements::Pages::Authentication::OpenId::AuthenticationPage template_path(:all, File.dirname(__FILE__)) def initialize(identifier) super(identifier) end def create_identity_from_email(email) RubyApp::Session::Identity.new(email) end end end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems