Commit Graph

581 Commits

Author SHA1 Message Date
Tanner Nelson 4e95199f24 rebuild 2017-07-19 19:21:53 -04:00
Tanner bf3f2b442d Merge pull request #190 from Cellane/patch-1
Fixed typo in Auth/Persist
2017-07-19 19:21:05 -04:00
Tanner b451dab05c Merge pull request #188 from pajapro/patch-1
Update middleware.md
2017-07-19 19:06:53 -04:00
Milan Vít 986ea7cafa Fixed typo
SessionMiddleware -> SessionsMiddleware
Changed tabs in code to spaces as that seems to be preferred indentation in the Vapor world
2017-07-10 23:45:39 +02:00
Pavel Procházka c73735cdf0 Update middleware.md 2017-07-02 13:43:46 +02:00
Tanner 7942bf37c8 Merge pull request #186 from vapor/steffendsommer-patch-1
Update controllers.md
2017-06-20 14:47:49 +01:00
tanner0101 28d2ef149d build 2017-06-20 14:27:06 +01:00
tanner0101 a2ccd99d2f controller updates 2017-06-20 14:26:52 +01:00
tanner0101 10d9211cc8 build 2017-06-19 16:39:01 +01:00
tanner0101 0061e8a420 minor updates 2017-06-19 16:38:39 +01:00
Steffen D. Sommer d55404cf16 Update controllers.md 2017-06-19 15:30:21 +01:00
Tanner 3549769c10 Merge pull request #182 from bygri/fluent-join
Added Join to Fluent's query page
2017-06-14 17:20:09 +01:00
Toby Griffin a5af013f31 Added multiple-column sort instructions 2017-06-07 09:32:22 +10:00
Toby Griffin 4b97f0f316 Join code snippet includes shorthand operator 2017-06-07 09:27:02 +10:00
tanner0101 0d229bfb19 build 2017-06-06 16:08:21 +01:00
tanner0101 9ec174d381 fix warning 2017-06-06 16:08:09 +01:00
tanner0101 97511a9b4d build 2017-06-06 16:04:20 +01:00
tanner0101 5110e9af92 drop.middleware + package updates 2017-06-06 16:04:09 +01:00
Toby Griffin f038c74569 Revert tabs to spaces 2017-06-06 12:53:23 +10:00
Toby Griffin 936495597d Added Join to Fluent 2017-06-06 12:51:36 +10:00
tanner0101 c554bd2140 build 2017-06-05 17:03:45 +01:00
Tanner 9ce51930d8 Update toolbox.md 2017-06-05 17:03:29 +01:00
tanner0101 a021670cbe build 2017-06-05 17:01:44 +01:00
Tanner ca574786ef Update toolbox.md 2017-06-05 17:00:57 +01:00
tanner0101 1f52c3ef9d build 2017-06-02 16:45:53 +01:00
tanner0101 35c4db048e fix route builder -> setup routes 2017-06-02 16:45:39 +01:00
Tanner 6667a533dc Merge pull request #180 from Shepherd-Dog/master
Fix link to point to live site instead of localhost
2017-06-02 16:44:11 +01:00
Tanner c8a856f0e8 Merge branch 'master' into master 2017-06-02 16:43:55 +01:00
Tanner e2804a9e86 Merge pull request #179 from valen90/patch-1
Update preparations
2017-06-02 16:43:26 +01:00
Tanner 5b7786c128 Merge pull request #178 from vapor/correct-manual-view-docs
Update manual section.
2017-06-02 16:42:59 +01:00
Tanner 7671c82a33 Merge pull request #177 from vapor/specify-executable
lots of people getting hung up on executable, added image
2017-06-02 16:42:29 +01:00
Tanner f1f10e91bb Merge pull request #173 from HelloDHLyn/fix-sample-code-error
Fix incorrect function name in sample code
2017-06-02 16:18:01 +01:00
Tanner 430728498c Merge pull request #172 from MartinLasek/patch-2
Make validation/package.md accessible on https://docs.vapor.codes/2.0/
2017-06-02 16:17:40 +01:00
Tanner 5cf4a84bee Merge pull request #171 from fletcher89/patch-1
Fix incorrect link to deploy section
2017-06-02 16:17:10 +01:00
Tanner bc1eac6612 Merge pull request #170 from TheNorthEestern/patch-1
Show Minimum Required Functions
2017-06-02 16:16:40 +01:00
David Brunow bb8e34a556 Fix link to point to live site instead of localhost 2017-06-01 10:40:20 -05:00
Valentín Corral García 86c6715dc8 Update database.md 2017-05-31 14:03:07 +02:00
Logan Wright c52858e3aa Update manual section. 2017-05-30 18:32:14 +01:00
Logan Wright 36e566893e lots of people getting hung up on executable, added image 2017-05-30 12:14:22 +01:00
Do Hoerin de4f76b954 Fix incorrect function name in sample code 2017-05-28 00:56:48 +09:00
Martin J. Lasek 10b71c8343 Make "validation/package.md" documentation accessible from menu on "https://docs.vapor.codes/2.0/"
We now have documentation about "validation/package.md" but it is not accessible through the menu on the website "https://docs.vapor.codes/2.0/".

This PR should solve that :)
2017-05-27 13:16:35 +02:00
Christian 056bef6812 Fix incorrect link to deploy section 2017-05-26 22:14:18 +02:00
Kacy James d5051bab92 Update getting-started.md 2017-05-26 15:05:15 -04:00
Kacy James 89ecfba1a8 Update getting-started.md 2017-05-26 15:04:21 -04:00
Kacy James f7a2602fde Update getting-started.md 2017-05-26 14:43:40 -04:00
Kacy James 6e4afc7d7d Show Minimum Required Functions
I think it would be useful to show a complete representation of the model class then go into explaining what does what. Upon reading the documentation, I was under the impression that all I needed to have in order for my model to be valid was:

```
final class Pet: Model {
    var name: String
    var age: Int
    let storage = Storage()

    init(name: String, age: Int) {
        self.name = name
        self.age = age
    }
}
```
2017-05-26 14:38:48 -04:00
Tanner f1e11d6d81 Merge pull request #168 from MartinLasek/patch-1
Added documentation on how to add validation packages
2017-05-25 18:58:24 +01:00
Martin J. Lasek 96482e4cd3 Added documentation on how to add validation packages
t the moment the validation-provider package name is still VaporValidation. However it is renamed to ValidationProvider in patch-3 of the package but not yet released.

Since this is a bug and the fix will be released very soon I considered using the right name here in the documentation already :)
2017-05-25 19:51:48 +02:00
tanner0101 848ea8dfed build 2017-05-24 13:32:02 +01:00
Tanner 3a78f15961 Merge pull request #166 from SebastianBoldt/patch-1
Update droplet.md
2017-05-24 13:31:25 +01:00