Glenn Latomme

Results 28 comments of Glenn Latomme

By doing: ```yaml - run: npx nx affected --target=docker --base=${{ needs.base.outputs.base }} --head=origin/main env: INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} INPUT_TAGS: ${{env.LATEST_TAG}} ``` I can get the version tag on it. But...

This is for the flash plugin, I'm trying HLS. I've setup a crossdomain.xml with the following configuration: and it still doesn't work. ``` xml ```

@assisgui same here but had to also configure the ttl: ```javascript CacheModule.registerAsync({ imports: [ConfigModule], useFactory: async (config: ConfigService) => { const store = await redisStore({ socket: { host: config.get('REDIS_HOST'), port:...

Here is a basic `d.ts.` I created, still waiting for the Oauth server to test the plugin out, untill then this seems like the right typing I'm not sure if...

@shabith , yep good idea I also added a options interface, so we don't need the `any` param (I really hate seeing a any in typescript/typings ^^ )

> @sir-captainmorgan21 Yes the solution is working for me. > > I clone the repo then I add `analyzeSourceFiles` and `targetDefaults` and run `nx reset` and now it's compile. >...

Small change to @zephyrosjyd version: ```javascript let sql = `DO $$ BEGIN IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'enum_${tableName}_${attr}') THEN CREATE TYPE ${enumName} AS ${values}; END...

For other people coming across this issue, I've found a hacky way to make it work: By placing the following **exact** key on the start column : `@Unique('ClubMemberships_clubId_playerId_unique')`. it combined...