projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Allow the root directory for data for file columns to be configured
[rails.git]
/
app
/
controllers
/
changeset_tag_controller.rb
1
class ChangesetTagController < ApplicationController
2
layout 'site'
3
4
def search
5
@tags = ChangesetTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
6
end
7
8
end