8 lines
118 B
Ruby
8 lines
118 B
Ruby
|
class ButtonsController < ApplicationController
|
||
|
def show
|
||
|
end
|
||
|
def create
|
||
|
render :text => "success"
|
||
|
end
|
||
|
end
|