mirror of
https://github.com/zoriya/Aeris.git
synced 2026-06-02 02:46:15 +00:00
uncrionge front miss reactions detection
This commit is contained in:
@@ -145,7 +145,7 @@ export const deSerializeApiPipelineReaction = (data: any, refReaction: AppAREATy
|
||||
export const deSerializePipeline = (data: any, AREAs: Array<Array<AppAREAType>>): AppPipelineType => {
|
||||
let reactionList: AppAREAType[] = [];
|
||||
for (const reaction of data.reactions) {
|
||||
const refReaction = deepCopy(AREAs[1].filter((el) => el.type === data.rType)[0]);
|
||||
const refReaction = deepCopy(AREAs[1].filter((el) => el.type === reaction.rType)[0]);
|
||||
if (refReaction !== undefined) reactionList.push(deepCopy(deSerializeApiPipelineReaction(reaction, refReaction)));
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ export class Github extends BaseService {
|
||||
throw new Error("User not authenticated via github");
|
||||
this._github = new Octokit({auth: pipeline.userData["Github"].accessToken});
|
||||
this._websocket = new Webhooks({
|
||||
secret: "bidibi"
|
||||
secret: pipeline.userData["Github"].accessToken
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user