IuryNogueira/myreef

View on GitHub
backend_v2/app/contracts/user_contracts/index.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
 
module UserContracts
class Index < ApplicationContract
params do
optional(:page).filled(:integer)
optional(:per_page).filled(:integer)
end
end
end