13 lines
278 B
Ruby
13 lines
278 B
Ruby
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
class OmniauthService
|
|
include MongoMapper::Document
|
|
|
|
belongs_to :user
|
|
|
|
key :provider, String
|
|
key :uid, String
|
|
|
|
end
|