We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As per the barista hub change, the barista products are hardcoded in the app in /lib/data/repositories/barista_product/barista_product_repository.dart
/lib/data/repositories/barista_product/barista_product_repository.dart
These should be fetched from the backend, after we have marked barista products in the database
The text was updated successfully, but these errors were encountered:
Awaiting a backend change
Sorry, something went wrong.
@marfavi What are your requirements for the app? Would grouping a product category enum suffice?
Eg a Barista perk product would be in a product category Barista
How about a list of user groups?
enum UserGroup { customer, barista, ... }; // field in product replacing the isVisible boolean List<UserGroup> visibleTo;
Successfully merging a pull request may close this issue.
As per the barista hub change, the barista products are hardcoded in the app in
/lib/data/repositories/barista_product/barista_product_repository.dart
These should be fetched from the backend, after we have marked barista products in the database
The text was updated successfully, but these errors were encountered: