You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added missing packages to package lock
* Create .licrc for licensebat scan
* Deleting licensebat file as it is obsolete
* IOT-1416: Minor changes for supporting the front-end-changes for having OpenDataDK datatargets more separate from HTTP-Push..
* Finished implementing new flow for sending ODDK-registration-mails directly from OS2IoT, instead of having to go through users mail-client..
* Renamed the new entity for OpenDataDK datatargets, to match naming-convention of other ODDK-files..
---------
Co-authored-by: Frederik Christ Vestergaard <[email protected]>
summary: "Update the OpenDataDkRegistered to true, for the given OrganizationId - to stop showing the dialog for sending ODDK-mail on creation of new datatargets",
232
+
})
233
+
@ApiNotFoundResponse()
234
+
asyncupdateOpenDataDkRegistered(
235
+
@Req()req: AuthenticatedRequest,
236
+
@Param("organizationId",newParseIntPipe())organizationId: number
awaitqueryRunner.query(`ALTER TYPE "public"."data_target_type_enum" RENAME TO "data_target_type_enum_old"`);
8
+
awaitqueryRunner.query(`CREATE TYPE "public"."data_target_type_enum" AS ENUM('HTTP_PUSH', 'FIWARE', 'MQTT', 'OPENDATADK')`);
9
+
awaitqueryRunner.query(`ALTER TABLE "data_target" ALTER COLUMN "type" TYPE "public"."data_target_type_enum" USING "type"::"text"::"public"."data_target_type_enum"`);
10
+
awaitqueryRunner.query(`DROP TYPE "public"."data_target_type_enum_old"`);
awaitqueryRunner.query(`CREATE TYPE "public"."data_target_type_enum_old" AS ENUM('HTTP_PUSH', 'FIWARE', 'MQTT')`);
15
+
awaitqueryRunner.query(`ALTER TABLE "data_target" ALTER COLUMN "type" TYPE "public"."data_target_type_enum_old" USING "type"::"text"::"public"."data_target_type_enum_old"`);
16
+
awaitqueryRunner.query(`DROP TYPE "public"."data_target_type_enum"`);
17
+
awaitqueryRunner.query(`ALTER TYPE "public"."data_target_type_enum_old" RENAME TO "data_target_type_enum"`);
0 commit comments