-
Notifications
You must be signed in to change notification settings - Fork 0
cyu/beast_private_message_plugin
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
PRIVATE MESSAGE PLUGIN
==============================
A plugin that adds private messaging support to Beast.
INSTALL INSTRUCTIONS
==============================
1) First, install the beast_plugins plugin if you haven't already:
script/plugin install http://svn.techno-weenie.net/projects/beast/plugins/beast_plugins
2) Install this plugin:
cd vendor/beast
svn export http://svn.codeeg.com/beast/private_message
3) Run the following command:
script/runner 'Beast::Plugins::PrivateMessage.install'
4) Add the plugin to the list of Beast plugins to be initialized. If you this is
the first Beast plugin you can initialize plugins by creating a plugins.rb file
in config/initializers and add the following line(s):
Beast::Plugin.initialize_plugins 'Beast::Plugins::PrivateMessage'
5) Edit app/views/users/show.html.erb and add the following lines at the bottom:
<%= private_messages @user %>
<%= private_message_for @user %>
The first method, 'private_messages', lists the private messages between the
session user and the passed in user. If the passed in user is the same as
the session user, then all private messages involving that user is listed.
The second method, 'private_message_for', generates the private message form
on that page and a link to show that form.
6) Add some additional styles to public/stylesheets/display.css by copying the contents of
private_messages.css to that stylesheet:
cat vendor/beast/private_message/private_messages.css >> public/stylesheets/display.css
About
A Private Message Plugin for Beast
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published