Sha256: fa9325b6ff13b0cc052b0e4c2df54d4c8dc258b6d05e70bbf8a00d2ae8fd4f4b
Contents?: true
Size: 664 Bytes
Versions: 43
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
43 entries across 43 versions & 1 rubygems