JS-Tech/resj

View on GitHub
app/controllers/api/tags_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::TagsController < ApplicationController

  def index
    render json: Tag.where("name ilike ?", "%#{params[:query]}%" ).order("popularity DESC")
  end

end