11 lines
106 B
Ruby
11 lines
106 B
Ruby
class AccountsController < ApplicationController
|
|
def index
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def show
|
|
end
|
|
end
|