Skip to content

Commit

Permalink
fix issues and add pull docker base image app
Browse files Browse the repository at this point in the history
  • Loading branch information
RogierdeRuijter committed Nov 11, 2020
1 parent 16eb9cd commit 738ef7e
Show file tree
Hide file tree
Showing 10 changed files with 492 additions and 21 deletions.
22 changes: 8 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,38 @@
## [4.16.4](https://github.com/RogierdeRuijter/montepoeli/compare/v4.16.3...v4.16.4) (2020-11-02)


### Bug Fixes

* Update all npm dependencies (2020-11-02) ([5cc9588](https://github.com/RogierdeRuijter/montepoeli/commit/5cc95887109d1a2c7a55f65b819da98ddd3afaab))
- Update all npm dependencies (2020-11-02) ([5cc9588](https://github.com/RogierdeRuijter/montepoeli/commit/5cc95887109d1a2c7a55f65b819da98ddd3afaab))

## [4.16.3](https://github.com/RogierdeRuijter/montepoeli/compare/v4.16.2...v4.16.3) (2020-10-26)


### Bug Fixes

* Update all npm dependencies (2020-10-26) ([d4002f5](https://github.com/RogierdeRuijter/montepoeli/commit/d4002f5f516c68a45e0e5d0310f9bfab5764ee43))
- Update all npm dependencies (2020-10-26) ([d4002f5](https://github.com/RogierdeRuijter/montepoeli/commit/d4002f5f516c68a45e0e5d0310f9bfab5764ee43))

## [4.16.2](https://github.com/RogierdeRuijter/montepoeli/compare/v4.16.1...v4.16.2) (2020-10-19)


### Bug Fixes

* add mat dialog title ([20e06ef](https://github.com/RogierdeRuijter/montepoeli/commit/20e06ef633a1785106591a315c80a5f33c0ed96b))
- add mat dialog title ([20e06ef](https://github.com/RogierdeRuijter/montepoeli/commit/20e06ef633a1785106591a315c80a5f33c0ed96b))

## [4.16.1](https://github.com/RogierdeRuijter/montepoeli/compare/v4.16.0...v4.16.1) (2020-10-19)


### Bug Fixes

* Update all npm dependencies (2020-10-19) ([9792d0c](https://github.com/RogierdeRuijter/montepoeli/commit/9792d0ccfd103ab1899ade9ea77f148075458532))
- Update all npm dependencies (2020-10-19) ([9792d0c](https://github.com/RogierdeRuijter/montepoeli/commit/9792d0ccfd103ab1899ade9ea77f148075458532))

# [4.16.0](https://github.com/RogierdeRuijter/montepoeli/compare/v4.15.6...v4.16.0) (2020-10-17)


### Bug Fixes

* fit it ([c8755bd](https://github.com/RogierdeRuijter/montepoeli/commit/c8755bdfeb7d22eb941f3bb8efff890f1f43d766))
* make logo smaller ([586738a](https://github.com/RogierdeRuijter/montepoeli/commit/586738af16ddf6ffbc828958f1b121b303debcdd))
* uhmm ([b0085fa](https://github.com/RogierdeRuijter/montepoeli/commit/b0085fa0ae2846d7d9fedc2956c947397a08fb65))

- fit it ([c8755bd](https://github.com/RogierdeRuijter/montepoeli/commit/c8755bdfeb7d22eb941f3bb8efff890f1f43d766))
- make logo smaller ([586738a](https://github.com/RogierdeRuijter/montepoeli/commit/586738af16ddf6ffbc828958f1b121b303debcdd))
- uhmm ([b0085fa](https://github.com/RogierdeRuijter/montepoeli/commit/b0085fa0ae2846d7d9fedc2956c947397a08fb65))

### Features

* scale logo ([6a39e67](https://github.com/RogierdeRuijter/montepoeli/commit/6a39e67ef44c39fa57160b33cc0b1ec15cb30fed))
- scale logo ([6a39e67](https://github.com/RogierdeRuijter/montepoeli/commit/6a39e67ef44c39fa57160b33cc0b1ec15cb30fed))

## [4.15.6](https://github.com/RogierdeRuijter/montepoeli/compare/v4.15.5...v4.15.6) (2020-10-12)

Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/adapters/authenticated-socket-io.adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class AuthenticatedSocketIoAdapter extends IoAdapter {
this.jwtService = this.app.get(JwtService);
}

createIOServer(port: number, options?: SocketIO.ServerOptions): any {
createIOServer(port: number, options?: any): any {
options.allowRequest = async (request, allowFunction) => {
// TODO: make this a method
const signedCookies = request.headers.cookie;
Expand Down
7 changes: 1 addition & 6 deletions apps/api/src/modules/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@ import { Injectable, UnauthorizedException } from '@nestjs/common';
import { UsersService } from '../users/users.service';
import { JwtPayload } from '../../models/interfaces/jwt-payload.interface';
import { User } from '../../models/interfaces/user.interface';
import { UserMapper } from '../users/user.mapper';

@Injectable()
export class AuthService {
constructor(
private readonly usersService: UsersService,
private readonly jwtService: JwtService,
private readonly userMapper: UserMapper
) {}
constructor(private readonly usersService: UsersService, private readonly jwtService: JwtService) {}

async signIn(body: any): Promise<any> {
return new Promise<any>((resolve, reject) =>
Expand Down
109 changes: 109 additions & 0 deletions pull-docker-base-image.app/Contents/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AMIsApplet</key>
<true/>
<key>AMStayOpen</key>
<false/>
<key>BuildMachineOSBuild</key>
<string>19A603003</string>
<key>CFBundleAllowMixedLocalizations</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>*</string>
</array>
<key>CFBundleTypeName</key>
<string>Automator workflow file</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>****</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>
</array>
<key>CFBundleExecutable</key>
<string>Automator Application Stub</string>
<key>CFBundleIconFile</key>
<string>ApplicationStub</string>
<key>CFBundleIdentifier</key>
<string>com.apple.automator.pull-docker-base-image</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>pull-docker-base-image</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleURLTypes</key>
<array/>
<key>CFBundleVersion</key>
<string>509</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>12A8179f</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>11.0.1</string>
<key>DTSDKBuild</key>
<string>20B21</string>
<key>DTSDKName</key>
<string>macosx11.0internal</string>
<key>DTXcode</key>
<string>1200</string>
<key>DTXcodeBuild</key>
<string>12A8179f</string>
<key>LSMinimumSystemVersion</key>
<string>10.9</string>
<key>LSUIElement</key>
<true/>
<key>NSAppleEventsUsageDescription</key>
<string>This workflow needs to control other applications to run.</string>
<key>NSAppleMusicUsageDescription</key>
<string>This workflow needs access to your music to run.</string>
<key>NSAppleScriptEnabled</key>
<string>YES</string>
<key>NSCalendarsUsageDescription</key>
<string>This workflow needs access to your calendars to run.</string>
<key>NSCameraUsageDescription</key>
<string>This workflow needs access to your camera to run.</string>
<key>NSContactsUsageDescription</key>
<string>This workflow needs access to your contacts to run.</string>
<key>NSHomeKitUsageDescription</key>
<string>This workflow needs access to your HomeKit Home to run.</string>
<key>NSMicrophoneUsageDescription</key>
<string>This workflow needs access to your microphone to run.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>This workflow needs access to your photos to run.</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSRemindersUsageDescription</key>
<string>This workflow needs access to your reminders to run.</string>
<key>NSServices</key>
<array/>
<key>NSSiriUsageDescription</key>
<string>This workflow needs access to Siri to run.</string>
<key>NSSystemAdministrationUsageDescription</key>
<string>This workflow needs access to administer this system in order to run.</string>
<key>UTExportedTypeDeclarations</key>
<array/>
<key>UTImportedTypeDeclarations</key>
<array/>
</dict>
</plist>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
178 changes: 178 additions & 0 deletions pull-docker-base-image.app/Contents/_CodeSignature/CodeResources
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>Resources/ApplicationStub.icns</key>
<data>
RYTqh+7iocnEIV8iTs9EgJjEkO4=
</data>
<key>Resources/Assets.car</key>
<data>
wM6S0+6/Mly1+qq/QVfR5SW0Yrc=
</data>
<key>Resources/en.lproj/InfoPlist.strings</key>
<dict>
<key>hash</key>
<data>
1b2wydwl2VFJjkXy23BqsZ3UwdU=
</data>
<key>optional</key>
<true/>
</dict>
</dict>
<key>files2</key>
<dict>
<key>Resources/ApplicationStub.icns</key>
<dict>
<key>hash</key>
<data>
RYTqh+7iocnEIV8iTs9EgJjEkO4=
</data>
<key>hash2</key>
<data>
odOqeBevxysHIbR5V5qgZz11qTuV9cL5jKaIcUw3R0I=
</data>
</dict>
<key>Resources/Assets.car</key>
<dict>
<key>hash</key>
<data>
wM6S0+6/Mly1+qq/QVfR5SW0Yrc=
</data>
<key>hash2</key>
<data>
AdGCOZF/5psqyrCHV5t3DhtFhEdGPJoUAyq50fYkkjk=
</data>
</dict>
<key>Resources/en.lproj/InfoPlist.strings</key>
<dict>
<key>hash</key>
<data>
1b2wydwl2VFJjkXy23BqsZ3UwdU=
</data>
<key>hash2</key>
<data>
hFx+B4kTwFrl4GWPbeiqWtlmQN65f8k7b6KEJ6uucSA=
</data>
<key>optional</key>
<true/>
</dict>
<key>document.wflow</key>
<dict>
<key>cdhash</key>
<data>
KzBJTUvZtIiyWlINW5rA/DtLZgg=
</data>
<key>requirement</key>
<string>cdhash H"2f069849e0744c2e32e24b8aa8d5c3ac1c12c136" or cdhash H"2b30494d4bd9b488b25a520d5b9ac0fc3b4b6608"</string>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
Loading

0 comments on commit 738ef7e

Please sign in to comment.