hensei-api/app/blueprints/api/v1/update_blueprint.rb
Justin Edmund caf357a84d Add support for AppUpdates
* Added model
* Added blueprint
* Added method to ApiController
* Added route
2023-01-25 19:27:49 -08:00

9 lines
157 B
Ruby

# frozen_string_literal: true
module Api
module V1
class UpdateBlueprint < Blueprinter::Base
fields :update_type, :updated_at
end
end
end