Browse Source

Fix favourite handling in ProcessInteractionService

closed-social-glitch-2
Eugen Rochko 8 years ago
parent
commit
da4b675aca
4 changed files with 8 additions and 10 deletions
  1. +0
    -5
      app/controllers/auth/sessions_controller.rb
  2. +4
    -0
      app/models/user.rb
  3. +3
    -4
      app/services/process_feed_service.rb
  4. +1
    -1
      app/services/process_interaction_service.rb

+ 0
- 5
app/controllers/auth/sessions_controller.rb View File

@ -1,8 +1,3 @@
class Auth::SessionsController < Devise::SessionsController
layout 'auth'
def create
params[:user].merge!(remember_me: 1)
super
end
end

+ 4
- 0
app/models/user.rb View File

@ -11,4 +11,8 @@ class User < ActiveRecord::Base
def admin?
self.admin
end
def remember_me
(super == nil) ? '1' : super
end
end

+ 3
- 4
app/services/process_feed_service.rb View File

@ -61,6 +61,9 @@ class ProcessFeedService < BaseService
end
else
# What to do about remote user?
# Are we supposed to do a search in the database by URL?
# We could technically open the URL, look for LRDD tags, get webfinger that way,
# finally acquire the acct:username@domain form, and then check DB
end
end
end
@ -176,8 +179,4 @@ class ProcessFeedService < BaseService
def update_remote_profile_service
@update_remote_profile_service ||= UpdateRemoteProfileService.new
end
def fan_out_on_write_service
@fan_out_on_write_service ||= FanOutOnWriteService.new
end
end

+ 1
- 1
app/services/process_interaction_service.rb View File

@ -77,7 +77,7 @@ class ProcessInteractionService < BaseService
end
def activity_id(xml)
xml.at_xpath('./activity:object/xmlns:id').content
xml.at_xpath('//activity:object/xmlns:id').content
end
def salmon

Loading…
Cancel
Save