Skip to content
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

Development #426

Merged
merged 56 commits into from
Nov 14, 2023
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
0a6668e
implement the menu search
olasunkanmi-SE Jul 26, 2023
ff364d1
fix code smell
olasunkanmi-SE Jul 26, 2023
65b6009
calculate service charge
olasunkanmi-SE Sep 11, 2023
c6c683f
update sonar project config
olasunkanmi-SE Sep 11, 2023
cc60885
update total order calculation
olasunkanmi-SE Sep 11, 2023
d2dfe38
add cart items to order
olasunkanmi-SE Sep 11, 2023
541a0a3
move email header check to the backend
olasunkanmi-SE Sep 11, 2023
55765a0
remove quantity from order
olasunkanmi-SE Sep 23, 2023
5c3e4c7
Merge branch 'release' into development
olasunkanmi-SE Sep 23, 2023
f0dfa7b
update selected items to include itemId
olasunkanmi-SE Sep 23, 2023
faa996d
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Sep 23, 2023
dead621
make cartitem and selectedCart Items optional in parent models
olasunkanmi-SE Sep 23, 2023
0dcffa7
Merge branch 'release' into development
olasunkanmi-SE Sep 23, 2023
ad8f925
create the order service
olasunkanmi-SE Sep 24, 2023
ddb05dd
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Sep 24, 2023
e28d2ef
Merge branch 'release' into development
olasunkanmi-SE Sep 24, 2023
a83f120
create order controller
olasunkanmi-SE Sep 24, 2023
d90a534
checkout and fix (#391)
olasunkanmi-SE Oct 24, 2023
a998d1e
Test (#393)
olasunkanmi-SE Oct 24, 2023
599e37c
Test (#396)
olasunkanmi-SE Oct 24, 2023
3ab65de
Merge branch 'release' into development
olasunkanmi-SE Oct 24, 2023
35a3d9d
Test (#400)
olasunkanmi-SE Oct 25, 2023
b6dd7f1
Test (#403)
olasunkanmi-SE Oct 26, 2023
c094940
Merge branch 'release' into development
olasunkanmi-SE Oct 26, 2023
2bd6071
create the create order service
olasunkanmi-SE Oct 29, 2023
1d3abea
Merge branch 'release' into development
olasunkanmi-SE Oct 29, 2023
b4f6733
create order
olasunkanmi-SE Oct 29, 2023
f118a7b
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Oct 29, 2023
420f2a9
Merge branch 'release' into development
olasunkanmi-SE Oct 29, 2023
325edb9
check for duplicate orders before creating one
olasunkanmi-SE Nov 12, 2023
736597c
Merge branch 'release' into development
olasunkanmi-SE Nov 12, 2023
dc6f1b4
Merge branch 'release' of github.com:olasunkanmi-SE/restaurant into d…
olasunkanmi-SE Nov 12, 2023
4766447
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Nov 12, 2023
2f47f7b
remove ChatGpt code reviewer
olasunkanmi-SE Nov 12, 2023
db513a6
create order statuses domain entity
olasunkanmi-SE Nov 12, 2023
b6fb0db
create the order status schema
olasunkanmi-SE Nov 12, 2023
5621a88
create orser status mapper
olasunkanmi-SE Nov 12, 2023
fa05846
Merge branch 'release' into development
olasunkanmi-SE Nov 12, 2023
0a091da
Merge branch 'release' of github.com:olasunkanmi-SE/restaurant into d…
olasunkanmi-SE Nov 12, 2023
b969d63
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Nov 12, 2023
d190169
create the order status service
olasunkanmi-SE Nov 14, 2023
5384610
fix merge conflicts
olasunkanmi-SE Nov 14, 2023
816f4fa
resolve all dependencies
olasunkanmi-SE Nov 14, 2023
e015c8e
Merge branch 'release' into development
olasunkanmi-SE Nov 14, 2023
7fbaa09
create order notes
olasunkanmi-SE Nov 14, 2023
b4fdecf
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Nov 14, 2023
ca70c26
Merge branch 'release' into development
olasunkanmi-SE Nov 14, 2023
da7db0c
fix build error
olasunkanmi-SE Nov 14, 2023
ac22f15
Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…
olasunkanmi-SE Nov 14, 2023
307c9c4
fix build error
olasunkanmi-SE Nov 14, 2023
977cddf
fix build errors
olasunkanmi-SE Nov 14, 2023
eaee17b
add order notes module to app module
olasunkanmi-SE Nov 14, 2023
97c5275
create the order processing queue module
olasunkanmi-SE Nov 14, 2023
35d9a23
Merge branch 'release' of github.com:olasunkanmi-SE/restaurant into d…
olasunkanmi-SE Nov 14, 2023
de9c032
update app module with OrderProcessingQueuesModule
olasunkanmi-SE Nov 14, 2023
ff7a24b
Merge branch 'release' into development
olasunkanmi-SE Nov 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions backend/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { ApplicationExceptionsFilter, ApplicationLogger } from './infrastructure
import { LocationModule } from './location';
import { OrderModule } from './order/order.module';
import { OrderStatusesModule } from './order_statuses/order_statuses.module';
import { OrderProcessingQueuesModule } from './order_processing_queue/order_processing_queue.module';

@Module({
imports: [
Expand Down Expand Up @@ -51,6 +52,7 @@ import { OrderStatusesModule } from './order_statuses/order_statuses.module';
CategoryModule,
OrderModule,
OrderStatusesModule,
OrderProcessingQueuesModule,
],
controllers: [AppController],
providers: [
Expand Down
Loading