-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move files #1133
Merged
Merged
Move files #1133
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
feature: homework
feature: homework-submissions
Submissions can be toggled for homeworks so that pupils can upload their solutions for the teacher.
platform: web
feature: file-sharing
Files can be shared inside Sharezone e.g. by uploading them in a file-sharing folder of a course.
feature: notifications
Push-Notifications and In-App-Notifications.
legal
Regarding Licenses, Policy updates, Warnings to users (that might cause trouble if not there) etc.
feature: timetable / calendar
Includes anything regarding lessons (timetable) and events (calendar).
feature: information sheet
Information sheets are posted to courses as a way to announce information.
ui / ux
feature: universal file features
File features (downloading, preview, etc.) that are used by multiple Sharezone features.
feature: attachments
Attachments are files that can be added to homeworks or information sheets.
feature: holidays
feature: groups:courses
Specific to only courses (instead of e.g. classes)
feature: groups:classes
Specific to only classes (instead of e.g. courses)
feature: groups
Groups umbrella term for courses and classes.
feature: navigation
Navigation inside the app (e.g. switching to a different screen).
testing
feature: onboarding
The steps (setting username, courses, etc.) after creating a new account.
feature: group permissions
Group admins can set what permissions different course members can do (e.g. only read content).
feature: authentification
Logging in/out (anonymous, sign-in with X, etc.) and registration.
user: teacher
user: parent
feature: comments
Comment on contents (homeworks, info sheets) to e.g. ask for clarifications on a task.
user: pupil / student
feature: analytics
Includes everything that is related to analytics and usage tracking
labels
Oct 25, 2023
github-actions
bot
added
feature: sharezone plus
Includes everything that is related to the Sharezone Plus subscription
w: dashboard-page
Page that shows a summary of all important things (homeworks, events, etc.).
labels
Oct 25, 2023
Visit the preview URL for this PR (updated for commit bbc0c01): https://sharezone-test--pr1133-move-files-obcpxdrf.web.app (expires Sat, 28 Oct 2023 16:07:41 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 4cb3ae61e1e018abfd9841fd3239f5b49ccc034b |
nilsreichardt
approved these changes
Oct 25, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
feature: analytics
Includes everything that is related to analytics and usage tracking
feature: attachments
Attachments are files that can be added to homeworks or information sheets.
feature: authentification
Logging in/out (anonymous, sign-in with X, etc.) and registration.
feature: comments
Comment on contents (homeworks, info sheets) to e.g. ask for clarifications on a task.
feature: file-sharing
Files can be shared inside Sharezone e.g. by uploading them in a file-sharing folder of a course.
feature: group permissions
Group admins can set what permissions different course members can do (e.g. only read content).
feature: groups:classes
Specific to only classes (instead of e.g. courses)
feature: groups:courses
Specific to only courses (instead of e.g. classes)
feature: groups
Groups umbrella term for courses and classes.
feature: holidays
feature: homework
feature: homework-submissions
Submissions can be toggled for homeworks so that pupils can upload their solutions for the teacher.
feature: information sheet
Information sheets are posted to courses as a way to announce information.
feature: navigation
Navigation inside the app (e.g. switching to a different screen).
feature: notifications
Push-Notifications and In-App-Notifications.
feature: onboarding
The steps (setting username, courses, etc.) after creating a new account.
feature: sharezone plus
Includes everything that is related to the Sharezone Plus subscription
feature: timetable / calendar
Includes anything regarding lessons (timetable) and events (calendar).
feature: universal file features
File features (downloading, preview, etc.) that are used by multiple Sharezone features.
legal
Regarding Licenses, Policy updates, Warnings to users (that might cause trouble if not there) etc.
platform: web
testing
ui / ux
user: parent
user: pupil / student
user: teacher
w: dashboard-page
Page that shows a summary of all important things (homeworks, events, etc.).
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I moved several files around.
Most notably I moved all files out of
app/lib/pages
andapp/lib/blocs
into their designated domain subfolder (e.g.app/lib/pages/settings/settings_page.dart
toapp/lib/settings/settings_page
) and thus deletedapp/lib/pages
andapp/lib/blocs
.Beforehand we were already mix and matching both approaches (top level pages/bloc folder and domain folders), now we use mostly domain folders (except
util
,widgets
andmain
).