Files
gitlabhq/app/controllers/projects/group_links_controller.rb
T

29 lines
662 B
Ruby

#-------------------------------------------------------------------
#
# The GitLab Enterprise Edition (EE) license
#
# Copyright (c) 2013 GitLab.com
#
# All Rights Reserved. No part of this software may be reproduced without
# prior permission of GitLab.com. By using this software you agree to be
# bound by the GitLab Enterprise Support Subscription Terms.
#
#-------------------------------------------------------------------
class Projects::GroupLinksController < Projects::ApplicationController
layout 'project_settings'
def index
# TODO: Implement
end
def create
# TODO: Implement
end
def destroy
# TODO: Implement
end
end