10 lines
254 B
Ruby
10 lines
254 B
Ruby
module RequestsHelper
|
|
def diaspora_url(identifier)
|
|
if identifier.include? '@'
|
|
f = Redfinger.finger(identifier)
|
|
identifier = f.each{|x| return x.link if x.rel =='http://joindiaspora.com/seed_location'}
|
|
end
|
|
identifier
|
|
end
|
|
|
|
end
|