OpenFn/OpenFn-Site

View on GitHub
app/controllers/tag_categories_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TagCategoriesController < ApplicationController

    skip_before_filter :require_login

    def index
        categories = TagCategory.order('id ASC')
        render json: categories.to_json
    end

end