10 lines
385 B
Ruby
10 lines
385 B
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
require 'rails/generators'
|
|
class Api::EntityGenerator < Rails::Generators::NamedBase
|
|
source_root File.expand_path('templates', __dir__)
|
|
def copy_to_entity
|
|
template 'entity.rb.erb', File.join('app/api/houdini/v1/entities', "#{name.underscore}.rb")
|
|
end
|
|
end
|