mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
* 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
10 lines
270 B
Go
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)
|
|
}
|