Add support for gallerypublish flight (#412)
This commit is contained in:
parent
9278654479
commit
e0063c76d9
|
@ -128,6 +128,7 @@ export class Flights {
|
|||
public static readonly MongoIndexEditor = "mongoindexeditor";
|
||||
public static readonly MongoIndexing = "mongoindexing";
|
||||
public static readonly AutoscaleTest = "autoscaletest";
|
||||
public static readonly GalleryPublish = "gallerypublish";
|
||||
}
|
||||
|
||||
export class AfecFeatures {
|
||||
|
|
|
@ -1890,6 +1890,9 @@ export default class Explorer {
|
|||
if (flights.indexOf(Constants.Flights.MongoIndexing) !== -1) {
|
||||
this.isMongoIndexingEnabled(true);
|
||||
}
|
||||
if (flights.indexOf(Constants.Flights.GalleryPublish) !== -1) {
|
||||
this.isGalleryPublishEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
public findSelectedCollection(): ViewModels.Collection {
|
||||
|
|
Loading…
Reference in New Issue