Fakultas Ilmu Komputer UI
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
module7-mainapp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Ignasius
module7-mainapp
Commits
ac2459c6
Commit
ac2459c6
authored
1 week ago
by
DawnFall19
Browse files
Options
Downloads
Patches
Plain Diff
Implement unsubscribe function in Notification service.
parent
f48990e9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/service/notification.rs
+14
-1
14 additions, 1 deletion
src/service/notification.rs
with
14 additions
and
1 deletion
src/service/notification.rs
+
14
−
1
View file @
ac2459c6
...
...
@@ -3,7 +3,7 @@ use std::thread;
use
bambangshop
::{
Result
,
compose_error_response
};
use
rocket
::
http
::
Status
;
use
crate
::
model
::
notification
::
Notification
;
use
crate
::
model
::
product
::
Product
;
use
crate
::
model
::
product
::
{
self
,
Product
}
;
use
crate
::
model
::
subscriber
::
Subscriber
;
use
crate
::
repository
::
subscriber
::
SubscriberRepository
;
...
...
@@ -16,4 +16,17 @@ impl NotificationService{
let
subscriber_result
:
Subscriber
=
SubscriberRepository
::
add
(
product_type_str
,
subscriber
);
return
Ok
(
subscriber_result
);
}
pub
fn
unsubscribe
(
product_type
:
&
str
,
url
:
&
str
)
->
Result
<
Subscriber
>
{
let
product_type_upper
:
String
=
product_type
.to_uppercase
();
let
product_type_str
:
&
str
=
product_type_upper
.as_str
();
let
result
:
Option
<
Subscriber
>
=
SubscriberRepository
::
delete
(
product_type_str
,
url
);
if
result
.is_none
()
{
return
Err
(
compose_error_response
(
Status
::
NotFound
,
String
::
from
(
"Subscriber not found."
)
))
}
return
Ok
(
result
.unwrap
());
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment