diff options
author | Joe Sak <joe@joesak.com> | 2011-02-24 21:32:37 -0600 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-02-24 21:32:37 -0600 |
commit | 6a3cf5d6a695e9394a73bd429dbeae3787a3963e (patch) | |
tree | ed6a5405871d0d4788d5ade500a613a4616b9c02 /app | |
parent | c75cf8a00e916e795a0299a55e933c8b3cad17ac (diff) | |
download | refinerycms-blog-6a3cf5d6a695e9394a73bd429dbeae3787a3963e.tar.gz refinerycms-blog-6a3cf5d6a695e9394a73bd429dbeae3787a3963e.tar.bz2 refinerycms-blog-6a3cf5d6a695e9394a73bd429dbeae3787a3963e.zip |
WIP: trying to test user association as author
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/admin/blog/posts_controller.rb | 46 | ||||
-rw-r--r-- | app/views/blog/posts/_post.html.erb | 2 |
2 files changed, 47 insertions, 1 deletions
diff --git a/app/controllers/admin/blog/posts_controller.rb b/app/controllers/admin/blog/posts_controller.rb index 1b6efc3..e8ffed2 100644 --- a/app/controllers/admin/blog/posts_controller.rb +++ b/app/controllers/admin/blog/posts_controller.rb @@ -10,6 +10,52 @@ class Admin::Blog::PostsController < Admin::BaseController :per_page => BlogPost.per_page }) end + + def create + # if the position field exists, set this object as last object, given the conditions of this class. + if BlogPost.column_names.include?("position") + params[:blog_post].merge!({ + :position => ((BlogPost.maximum(:position, :conditions => "")||-1) + 1) + }) + end + + if BlogPost.column_names.include?("user_id") + params[:blog_post].merge!({ + :user_id => current_user.id + }) + end + + if (@blog_post = BlogPost.create(params[:blog_post])).valid? + (request.xhr? ? flash.now : flash).notice = t( + 'refinery.crudify.created', + :what => "'#{@blog_post.title}'" + ) + + unless from_dialog? + unless params[:continue_editing] =~ /true|on|1/ + redirect_back_or_default(admin_blog_posts_url) + else + unless request.xhr? + redirect_to :back + else + render :partial => "/shared/message" + end + end + else + render :text => "<script>parent.window.location = '#{admin_blog_posts_url}';</script>" + end + else + unless request.xhr? + render :action => 'new' + else + render :partial => "/shared/admin/error_messages", + :locals => { + :object => @blog_post, + :include_object_name => true + } + end + end + end before_filter :find_all_categories, :only => [:new, :edit, :create, :update] diff --git a/app/views/blog/posts/_post.html.erb b/app/views/blog/posts/_post.html.erb index 6a16631..7600d26 100644 --- a/app/views/blog/posts/_post.html.erb +++ b/app/views/blog/posts/_post.html.erb @@ -9,7 +9,7 @@ <details> <time datetime="<%=l @blog_post.published_at.to_date, :format => :default %>" class='posted_at'> <%= t('blog.shared.posts.created_at', :when => l(@blog_post.published_at.to_date, :format => :short)) %>. - </time> + </time> by <%= @blog_post.author.try :login %> <% if (categories = @blog_post.categories).any? %> <aside class='filed_in'> <%= t('blog.posts.show.filed_in') %> |