Sha256: 6e033241482b7d18c026fe47c3c0b573bebc098200554985cc2a4f8e7652141c
Contents?: true
Size: 300 Bytes
Versions: 43
Compression:
Stored size: 300 Bytes
Contents
# frozen_string_literal: true class SynchronizationsController < ApplicationController def index return unless current_organization @synchronizations = Maestrano::Connector::Rails::Synchronization.where(organization_id: current_organization.id).order(updated_at: :desc).limit(40) end end
Version data entries
43 entries across 43 versions & 1 rubygems