mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 03:26:07 +10:00
29 lines
662 B
Ruby
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
|
|
|