All checks were successful
continuous-integration/drone/push Build is passing
10 lines
206 B
Ruby
10 lines
206 B
Ruby
class DonationsController < ApplicationController
|
|
before_action :require_user_signed_in
|
|
|
|
# GET /donations
|
|
# GET /donations.json
|
|
def index
|
|
@donations = current_user.donations.completed
|
|
end
|
|
end
|