README.rdoc in my_forum-0.0.1.beta41 vs README.rdoc in my_forum-0.0.1.beta42
- old
+ new
@@ -5,9 +5,30 @@
This project rocks and uses MIT-LICENSE.
INSTALLATION
rake my_forum:install:migrations
+
+FAQ
+Q: how to customize urls
+A:
+
+Create, for exmaple, my_forum.rb file in your initialize app folder (your_app/config/initializer/my_forum.rb) and rewrite
+methids like this -
+
+MyForum::Forum.class_eval do
+ def to_param
+ "#{id}-something"
+ end
+end
+
+
+
+
+
+
+
+
For using existing User model, use somethink like this:
Create config/initializers/my_forum.rb with next content:
MyForum::Engine.use_custom_user_model = true
...
\ No newline at end of file