submissions icon indicating copy to clipboard operation
submissions copied to clipboard

Provides a common structure to deal with data based API requests

Results 10 submissions issues
Sort by recently updated
recently updated
newest added

Hi @Siemen and everyone, Am currently working with Vapor and found the few nodes-vapor's framework indispensable ! This is more a general comment than a proper issue. But I find...

I'm trying to display a text field where the user could enter arbitrary integer values. For this, I currently have ``` struct Submission: Decodable, Reflectable, FieldsRepresentable { let integerField: Int?...

Been giving this a go and so far I like what I see in theory, however I'm looking for a simpler approach for my use. We have almost nothing that...

I have a simple `Post` model ```swift // Post.swift final class Post: MySQLModel, Content, Parameter { var id: Int? var title: String var body: String var userId: User.ID } extension...

The strategy is to let it be up to the consumer to decide if they want to pull in https://github.com/nodes-vapor/bootstrap if they want to. This means that we should provide...

enhancement

Please consider adding a way to add the `col` tagging. For example, this is what my fields look like: ```html   Client Name:       ```

How do we handle getting an input type of checkbox to be checked based on a `Bool` in the data model? Similarly, how would you handle radio buttons and `select`'s...