20 lines
172 B
Ruby
20 lines
172 B
Ruby
class BansController < ApplicationController
|
|
def new
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def index
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def update
|
|
end
|
|
end
|