debian-mirror-gitlab/app/controllers/sherlock/transactions_controller.rb

22 lines
476 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-11-26 14:37:03 +05:30
module Sherlock
class TransactionsController < Sherlock::ApplicationController
def index
@transactions = Gitlab::Sherlock.collection.newest_first
end
def show
@transaction = Gitlab::Sherlock.collection.find_transaction(params[:id])
render_404 unless @transaction
end
def destroy_all
Gitlab::Sherlock.collection.clear
2019-02-15 15:39:39 +05:30
redirect_back_or_default(options: { status: :found })
2015-11-26 14:37:03 +05:30
end
end
end