Tog user management
- Login, logout and signup processes
- Password reminder
- Activation process
- recaptcha support
- User login or email as key
- Administration interface
If you used the command togify to install tog, then you already have tog_user installed.
If not, install it like any other plugin:
- Install plugin form source:
ruby script/plugin install [email protected]:tog/tog_user.git
- Generate installation migration:
ruby script/generate migration install_tog_user
with the following content:
class InstallTogUser < ActiveRecord::Migration
def self.up
migrate_plugin "tog_user", 1
end
def self.down
migrate_plugin "tog_user", 0
end
end
- Add tog_social's routes to your application's config/routes.rb
map.routes_from_plugin 'tog_user'
- And finally...
rake db:migrate
http://github.com/tog/tog_social
http://github.com/tog/tog_social/wikis
Copyright (c) 2008 Keras Software Development, released under the MIT license