6 lines
102 B
Ruby
6 lines
102 B
Ruby
class SupportersController < ApplicationController
|
|
def new
|
|
@supporter = Supporter.new
|
|
end
|
|
end
|