Mads Odgaard

Results 12 issues of Mads Odgaard

I have a left menu, with a logout button, which goes back to the login screen. On the login screen it performs a push segue to the next screen "SearchViewController"...

Hello. I am currently trying to insert a new item into a ReferenceCollection of a User object (followers ex) As the item I am inserting already exists, right now when...

This PR is related to https://github.com/vapor-community/mailgun-kit/pull/1 and https://github.com/vapor/email/pull/2 Implementation is moved to a new repository `mailgun-kit` which is framework agnostic. Furthermore, this PR adds support for the generic email interface...

This allows the use `DatabaseQuery.Value` when setting a `@Field` property value. For example you can now use SQL: ```swift query.set(\.$field, to: .sql(raw: "1")) ```

enhancement
question
semver-minor

Currently, we have to use raw queries in order to rename columns. ```swift sqlDB.raw("ALTER TABLE table RENAME COLUMN col1 TO col2") ``` I also tried using the new raw SQL...

enhancement

Adds support for `vapor/email`. Requires [#4](https://github.com/vapor-community/sendgrid-kit/pull/4)

This PR serves as a discussion and W.I.P for this repository and the API. ## EmailClient So far I've implemented `EmailClient` that providers must conform to, which allows to send...

enhancement

This PR updates the package to use Apple's new Crypto library and Vapor 4 (RC) atm, so might wait to merge until Vapor 4 is released...

When using a schema that has a field from a reference that is both non-required and "nullable" this is a common way of defining it in OpenAPI: 3.1.0 ```yaml UpdateTaskOccurrenceCompletionResponse:...

area/generator
area/runtime
kind/enhancement

Many other systems and languages use something like `libsodium` for AEAD. libsodium uses `XSalsa20Poly1305` and not `ChaCha20Poly1305` which means that we cannot easily support communication with these other systems, without...