diaspora_federation/test/dummy/config/initializers/diaspora_federation.rb
Benjamin Neff f0591a745b add basic webfinger stuf (WIP)
and:
- add configure method to set some configs
- write rdoc
2015-06-14 22:13:38 +02:00

8 lines
228 B
Ruby

# configure the federation engine
DiasporaFederation.configure do |config|
# the pod url
config.server_uri = URI("http://localhost:3000/")
# the class to be used for a person
config.person_class = Person.class.to_s
end