cli/controller/scope.go
Gregory Schier 88a0400f30
Deploy from Starter Template (#75)
* Add the ability to create project from starter!

* Address PR comments

* Open to deployments tab and handle optional/default env vars

* Trim space on project name validator

* pull out required validator into helper func
2021-03-26 10:21:01 -07:00

10 lines
270 B
Go

package controller
import (
"context"
)
// GetWritableGithubScopes creates a project specified by the project request, error otherwise
func (c *Controller) GetWritableGithubScopes(ctx context.Context) ([]string, error) {
return c.gtwy.GetWritableGithubScopes(ctx)
}