Sha256: 5435c1e298ed1c9c19d476c4d99b3bd840eaf3de7675658651d855dec31c1792

Contents?: true

Size: 620 Bytes

Versions: 18

Compression:

Stored size: 620 Bytes

Contents

json.data @collection do |entity|
  json.id entity.id
  json.type entity.class.table_name
  json.attributes do
    json.(entity, :created_at, :password)
    json.ip entity.ip.to_s
  end
  unless entity.agent.nil?
    json.relationships do
      json.agent do
        json.data do
          json.id entity.agent_id
          json.type entity.agent.class.table_name
        end
      end
    end
  end
end
json.included do
  json.partial! 'my/login_attempts/included/agents', locals: { agents: Agent.where(id: @collection.pluck(:agent_id).uniq) }
end
json.partial! 'shared/pagination', locals: { collection: @collection }

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
biovision-base-0.41.190905.0 app/views/my/login_attempts/index.jbuilder
biovision-base-0.39.190804.1 app/views/my/login_attempts/index.jbuilder
biovision-base-0.37.190607.0 app/views/my/login_attempts/index.jbuilder
biovision-base-0.36.190526.0 app/views/my/login_attempts/index.jbuilder
biovision-base-0.34.190331.1 app/views/my/login_attempts/index.jbuilder
biovision-base-0.22.180920.0 app/views/my/login_attempts/index.jbuilder
biovision-base-0.21.180812.0 app/views/my/login_attempts/index.jbuilder
biovision-base-0.20.180731.0 app/views/my/login_attempts/index.jbuilder
biovision-base-0.19.180703.1 app/views/my/login_attempts/index.jbuilder
biovision-base-0.17.180619 app/views/my/login_attempts/index.jbuilder
biovision-base-0.15.180502 app/views/my/login_attempts/index.jbuilder
biovision-base-0.15.180415 app/views/my/login_attempts/index.jbuilder
biovision-base-0.14.180326 app/views/my/login_attempts/index.jbuilder
biovision-base-0.11.180127 app/views/my/login_attempts/index.jbuilder
biovision-base-0.9.171227 app/views/my/login_attempts/index.jbuilder
biovision-base-0.8.171029 app/views/my/login_attempts/index.jbuilder
biovision-base-0.8.170916 app/views/my/login_attempts/index.jbuilder
biovision-base-0.7.170709 app/views/my/login_attempts/index.jbuilder