forked from Gitlink/forgeplus
16 lines
239 B
Ruby
16 lines
239 B
Ruby
|
|
class DevOps::BuildsController < ApplicationController
|
||
|
|
before_action :require_login
|
||
|
|
before_action :find_project
|
||
|
|
|
||
|
|
def index
|
||
|
|
end
|
||
|
|
|
||
|
|
def show
|
||
|
|
end
|
||
|
|
|
||
|
|
private
|
||
|
|
def find_project
|
||
|
|
@repo = Repository.find params[:id]
|
||
|
|
end
|
||
|
|
end
|