implement openID authentication

This commit is contained in:
Stella Rouzi 2014-06-18 16:58:30 +03:00
parent 37e026a9fb
commit 600adde6ba
23 changed files with 408 additions and 14 deletions

View file

@ -0,0 +1,12 @@
class CreateOpenids< ActiveRecord::Migration
def change
create_table :openids do |t|
t.string :provider
t.string :email
t.string :uid
t.integer :user_id
t.timestamps
end
end
end