-
Notifications
You must be signed in to change notification settings - Fork 88
TF- Jmap method for aibot #3799
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
base: master
Are you sure you want to change the base?
Conversation
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.
should move all the ai_bot
into ai_bot
module
part 'suggest_reply_method.g.dart'; | ||
|
||
@AccountIdConverter() | ||
@PropertiesConverter() |
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.
why we need it?
@JsonSerializable(explicitToJson: true) | ||
class SuggestReplyMethod extends MethodRequiringAccountId { | ||
static final capabilityIdentifier = | ||
CapabilityIdentifier(Uri.parse('com.linagora.tmail:params:jmap:aibot')); |
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.
should constant 'com.linagora.tmail:params:jmap:aibot'
6c5dc07
to
8ec6b3c
Compare
static final capabilityIdentifier = | ||
CapabilityIdentifier(Uri.parse(aibotCapability)); | ||
|
||
final String emailId; |
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.
final String emailId; | |
final EmailId emailId; |
import 'package:tmail_ui_user/features/aibot/domain/repository/aibot_repository.dart'; | ||
import 'package:tmail_ui_user/features/aibot/domain/state/suggest_reply_state.dart'; | ||
|
||
class AiBotSuggestReply { |
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.
class AiBotSuggestReply { | |
class AiBotSuggestReplyInteractor { |
No description provided.