Add Mailing-Lists Feature #7

Merged
tanneberger merged 2 commits from mailing-lists into master 2023-09-05 21:20:05 +02:00
tanneberger commented 2023-09-05 21:04:41 +02:00 (Migrated from github.com)
No description provided.
TKFRvisionOfficial (Migrated from github.com) reviewed 2023-09-05 21:04:41 +02:00
MarcelCoding (Migrated from github.com) requested changes 2023-09-05 21:08:01 +02:00
@ -11,12 +11,15 @@ tower-http = { version = "0.4", default-features = false, features = ["cors", "f
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
MarcelCoding (Migrated from github.com) commented 2023-09-05 21:05:56 +02:00

just use tracing

just use tracing
MarcelCoding (Migrated from github.com) commented 2023-09-05 21:06:28 +02:00

use default-features=false and rustls to avoid openssl build dependency

use default-features=false and rustls to avoid openssl build dependency
@ -0,0 +1,128 @@
use email_address::EmailAddress;
MarcelCoding (Migrated from github.com) commented 2023-09-05 21:07:23 +02:00

join?

join?
@ -0,0 +27,4 @@
pub(crate) struct ListmonkCreateSubscriber {
email: String,
name: String,
status: String, // "enabled" or "disabled"
MarcelCoding (Migrated from github.com) commented 2023-09-05 21:06:48 +02:00

Enum?

Enum?
tanneberger (Migrated from github.com) reviewed 2023-09-05 21:09:49 +02:00
@ -0,0 +27,4 @@
pub(crate) struct ListmonkCreateSubscriber {
email: String,
name: String,
status: String, // "enabled" or "disabled"
tanneberger (Migrated from github.com) commented 2023-09-05 21:09:49 +02:00

I just need it int the form

I just need it int the form
MarcelCoding (Migrated from github.com) approved these changes 2023-09-05 21:15:44 +02:00
Sign in to join this conversation.
No description provided.