From f4ce16c5d6db929a4f7442514c709fecfd47b3fe Mon Sep 17 00:00:00 2001 From: alseiitov Date: Thu, 15 Jul 2021 20:15:08 +0600 Subject: [PATCH 1/2] add missing allowed packages for forum optionals --- subjects/forum/advanced-features/README.md | 5 ++++- subjects/forum/authentication/README.md | 7 +++++++ subjects/forum/image-upload/README.md | 5 ++++- subjects/forum/moderation/README.md | 11 +++++++---- 4 files changed, 22 insertions(+), 6 deletions(-) diff --git a/subjects/forum/advanced-features/README.md b/subjects/forum/advanced-features/README.md index f48f40d7..75ded1de 100644 --- a/subjects/forum/advanced-features/README.md +++ b/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 \ No newline at end of file diff --git a/subjects/forum/authentication/README.md b/subjects/forum/authentication/README.md index feb9cbd4..efc04045 100644 --- a/subjects/forum/authentication/README.md +++ b/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 \ No newline at end of file diff --git a/subjects/forum/image-upload/README.md b/subjects/forum/image-upload/README.md index f3b037cf..ed48a403 100644 --- a/subjects/forum/image-upload/README.md +++ b/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 \ No newline at end of file diff --git a/subjects/forum/moderation/README.md b/subjects/forum/moderation/README.md index af42fa23..36d267ef 100644 --- a/subjects/forum/moderation/README.md +++ b/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 From 574eb356a1df938151bc16386a29988b6948137e Mon Sep 17 00:00:00 2001 From: alseiitov Date: Thu, 15 Jul 2021 20:23:49 +0600 Subject: [PATCH 2/2] add missing allowed packages for real-time-forum and real-time-forum-typing-in-progress --- subjects/real-time-forum/README.md | 5 ++++- subjects/real-time-forum/typing-in-progress/README.md | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/subjects/real-time-forum/README.md b/subjects/real-time-forum/README.md index 4c412cd4..cc41a51e 100644 --- a/subjects/real-time-forum/README.md +++ b/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: diff --git a/subjects/real-time-forum/typing-in-progress/README.md b/subjects/real-time-forum/typing-in-progress/README.md index ca6d6c7b..4a7807e0 100644 --- a/subjects/real-time-forum/typing-in-progress/README.md +++ b/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: