repository-provider 32.3.12 → 32.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/base-provider.mjs +4 -4
package/package.json
CHANGED
package/src/base-provider.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { Hook } from "./hook.mjs";
|
|
|
8
8
|
import { Project } from "./project.mjs";
|
|
9
9
|
import { Milestone } from "./milestone.mjs";
|
|
10
10
|
import { BaseObject } from "./base-object.mjs";
|
|
11
|
-
import { url, name } from "./attributes.mjs";
|
|
11
|
+
import { url, name, description } from "./attributes.mjs";
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* @typedef {Object} MessageDestination
|
|
@@ -98,7 +98,9 @@ export class BaseProvider extends BaseObject {
|
|
|
98
98
|
|
|
99
99
|
static get attributes() {
|
|
100
100
|
return {
|
|
101
|
-
|
|
101
|
+
url,
|
|
102
|
+
description,
|
|
103
|
+
|
|
102
104
|
/**
|
|
103
105
|
* In case there are several providers able to support a given source which one sould be used ?
|
|
104
106
|
* this defines the order
|
|
@@ -115,8 +117,6 @@ export class BaseProvider extends BaseObject {
|
|
|
115
117
|
...name,
|
|
116
118
|
env: ["{{instanceIdentifier}}NAME"]
|
|
117
119
|
},
|
|
118
|
-
|
|
119
|
-
url,
|
|
120
120
|
|
|
121
121
|
/**
|
|
122
122
|
* To forward info/warn and error messages to
|