9 lines
238 B
Ruby
9 lines
238 B
Ruby
class Internal::WebhookEndpointsController < Internal::ApplicationController
|
|
layout "internal"
|
|
|
|
def index
|
|
@endpoints = Webhook::Endpoint.includes(:user).
|
|
page(params[:page]).per(50).
|
|
order("created_at desc")
|
|
end
|
|
end
|