The code powering m.abunchtell.com https://m.abunchtell.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

12 rader
184 B

  1. # frozen_string_literal: true
  2. class REST::TagSerializer < ActiveModel::Serializer
  3. include RoutingHelper
  4. attributes :name, :url, :history
  5. def url
  6. tag_url(object)
  7. end
  8. end