mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 12:56:14 +10:00
9 lines
220 B
Ruby
9 lines
220 B
Ruby
class ThirdPartyUserData < ActiveRecord::Base
|
|
belongs_to :user
|
|
attr_accessible :douban_user_name, :user_id, :import_douban_done
|
|
|
|
def import_douban_user_done
|
|
update_attributes import_douban_done: true
|
|
end
|
|
end
|