14 lines
224 B
Ruby
Executable File
14 lines
224 B
Ruby
Executable File
class ConfigController < ApplicationController
|
|
def index
|
|
|
|
end
|
|
def get_git_update
|
|
g = Git.open(".")
|
|
|
|
flash[:notice] ="Test"
|
|
flash[:notice] =g.remote("fetsite").fetch
|
|
redirect_to config_url
|
|
|
|
end
|
|
end
|