7 lines
146 B
Ruby
7 lines
146 B
Ruby
class ExtensionsController < ApplicationController
|
|
def confirm
|
|
Extension.find(params[:id]).confirm!
|
|
|
|
redirect_to sections_url
|
|
end
|
|
end
|