diff options
author | Joe Sak <joe@joesak.com> | 2011-06-15 11:02:59 -0500 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-06-15 11:02:59 -0500 |
commit | b8d2bcb913827e1db612b2952e74d316669e6835 (patch) | |
tree | c417f2ec10e5e21c24ffbbc1319dbf707a3b05e9 /app/controllers | |
parent | 687ffb62863fd036f1eb62e82a407b5a71a0e812 (diff) | |
download | refinerycms-blog-b8d2bcb913827e1db612b2952e74d316669e6835.tar.gz refinerycms-blog-b8d2bcb913827e1db612b2952e74d316669e6835.tar.bz2 refinerycms-blog-b8d2bcb913827e1db612b2952e74d316669e6835.zip |
autocomplete added for tags
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/admin/blog/posts_controller.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/controllers/admin/blog/posts_controller.rb b/app/controllers/admin/blog/posts_controller.rb index e8ffed2..7569aa6 100644 --- a/app/controllers/admin/blog/posts_controller.rb +++ b/app/controllers/admin/blog/posts_controller.rb @@ -11,6 +11,14 @@ class Admin::Blog::PostsController < Admin::BaseController }) end + def tags + @tags = BlogPost.tag_counts_on(:tags).where(["tags.name LIKE ?", "%#{params[:term].to_s.downcase}%"]) + .collect { |tag| + {:id => tag.id, :value => tag.name} + } + render :json => @tags.flatten + 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") |