Browse Source

Merge pull request #807 from alseiitov/master

add missing allowed packages
content-update
OGordoo 3 years ago committed by GitHub
parent
commit
59e5b844e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      subjects/forum/advanced-features/README.md
  2. 7
      subjects/forum/authentication/README.md
  3. 5
      subjects/forum/image-upload/README.md
  4. 11
      subjects/forum/moderation/README.md
  5. 5
      subjects/real-time-forum/README.md
  6. 5
      subjects/real-time-forum/typing-in-progress/README.md

5
subjects/forum/advanced-features/README.md

@ -33,4 +33,7 @@ This project will help you learn about :
### Allowed packages
- The [standard go](https://golang.org/pkg/) packages are allowed
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid

7
subjects/forum/authentication/README.md

@ -20,3 +20,10 @@ This project will help you learn about:
- Your project must have implemented at least the two authentication examples given.
- Your project must be written in **Go**.
- The code must respect the [**good practices**](https://public.01-edu.org/subjects/good-practices/).
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid

5
subjects/forum/image-upload/README.md

@ -30,4 +30,7 @@ This project will help you learn about:
### Allowed packages
- Only the [standard go](https://golang.org/pkg/) packages are allowed
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid

11
subjects/forum/moderation/README.md

@ -39,13 +39,16 @@ This project will help you learn about :
- Moderation System
- User access levels
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
### Instructions
- You must handle website errors, HTTPS status.
- You must handle all sort of technical errors.
- The code must respect the [**good practices**](https://public.01-edu.org/subjects/good-practices/).
- It is recommended that the code should present a **test file**.
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid

5
subjects/real-time-forum/README.md

@ -69,8 +69,11 @@ As it is expected, the messages should work in real time, in other words, if a u
### Allowed Packages
- Only the [standard go](https://golang.org/pkg/) packages are allowed
- All [standard go](https://golang.org/pkg/) packages are allowed.
- [Gorilla](https://pkg.go.dev/github.com/gorilla/websocket) websocket
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
This project will help you learn about:

5
subjects/real-time-forum/typing-in-progress/README.md

@ -25,8 +25,11 @@ To help with the display of the typing in progress you can take a look on the js
### Allowed Packages
- Only the [standard go](https://golang.org/pkg/) packages are allowed
- All [standard go](https://golang.org/pkg/) packages are allowed.
- [Gorilla](https://pkg.go.dev/github.com/gorilla/websocket) websocket
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
This project will help you learn about:

Loading…
Cancel
Save