mirror of
https://github.com/harness/drone.git
synced 2025-05-05 07:00:02 +08:00

This change is adding search capability to the following apis: - child repositories - child spaces *NOTE* The search space is limited to direct child repos/spaces.
20 lines
509 B
Go
20 lines
509 B
Go
// Copyright 2022 Harness Inc. All rights reserved.
|
|
// Use of this source code is governed by the Polyform Free Trial License
|
|
// that can be found in the LICENSE.md file for this repository.
|
|
|
|
package enum
|
|
|
|
const (
|
|
id = "id"
|
|
path = "path"
|
|
name = "name"
|
|
pathName = "path_name"
|
|
created = "created"
|
|
createdAt = "created_at"
|
|
updated = "updated"
|
|
updatedAt = "updated_at"
|
|
date = "date"
|
|
defaultString = "default"
|
|
undefined = "undefined"
|
|
)
|