0

私は、ember アプリのバックエンドを作成するためにhttps://github.com/cerebris/peepsをフォローし始めました。owner_id私のトラブルは、テーブルへの外部キー列として使用したいことから始まり、リソースでは、参照を参照しUserて関係を呼び出したいと考えています。ownerusers

# app/models/user.rb
class User < ApplicationRecord
  has_many :rentals, foreign_key: :owner_id
end
#app/models/rental.rb
class Rental < ApplicationRecord
    belongs_to :user, foreign_key: :owner_id
end
# app/resources/api/user_resource.rb
class API::UserResource < JSONAPI::Resource
  attributes :user_name, :first_name, :last_name, :email, :is_staff, :is_active, :is_superuser, :last_login, :date_joined
  has_many :rentals
end
# app/resources/api/rental_resource.rb
class API::RentalResource < JSONAPI::Resource
  attributes :title, :description, :city, :category, :image, :bedrooms

  has_one :owner
  filter :user
end

has_one :ownerこれがユーザー リソースにリンクする必要があることを示すために、どのパラメーターを追加する必要があるのか​​疑問に思っています。

4

1 に答える 1