Skip to content

Commit

Permalink
MID-7815 hide mail/sms transports for now, there are missing fields (…
Browse files Browse the repository at this point in the history
…will be fixed after release)
  • Loading branch information
1azyman committed Apr 7, 2022
1 parent 160a5c9 commit e1f1c1d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
/**
* Created by Viliam Repan (lazyman).
*/
@PanelType(name = "mailTransportPanel")
@PanelInstance(
identifier = "mailTransportPanel",
applicableForType = MessageTransportConfigurationType.class,
display = @PanelDisplay(
label = "MailTransportContentPanel.label",
icon = GuiStyleConstants.CLASS_CIRCLE_FULL,
order = 20
)
)
//@PanelType(name = "mailTransportPanel")
//@PanelInstance(
// identifier = "mailTransportPanel",
// applicableForType = MessageTransportConfigurationType.class,
// display = @PanelDisplay(
// label = "MailTransportContentPanel.label",
// icon = GuiStyleConstants.CLASS_CIRCLE_FULL,
// order = 20
// )
//)
@Counter(provider = MailTransportCounter.class)
public class MailTransportContentPanel extends GeneralTransportContentPanel<MailTransportConfigurationType> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
/**
* Created by Viliam Repan (lazyman).
*/
@PanelType(name = "smsTransportPanel")
@PanelInstance(
identifier = "smsTransportPanel",
applicableForType = MessageTransportConfigurationType.class,
display = @PanelDisplay(
label = "SmsTransportContentPanel.label",
icon = GuiStyleConstants.CLASS_CIRCLE_FULL,
order = 30
)
)
//@PanelType(name = "smsTransportPanel")
//@PanelInstance(
// identifier = "smsTransportPanel",
// applicableForType = MessageTransportConfigurationType.class,
// display = @PanelDisplay(
// label = "SmsTransportContentPanel.label",
// icon = GuiStyleConstants.CLASS_CIRCLE_FULL,
// order = 30
// )
//)
@Counter(provider = SmsTransportCounter.class)
public class SmsTransportContentPanel extends GeneralTransportContentPanel<SmsTransportConfigurationType> {

Expand Down

0 comments on commit e1f1c1d

Please sign in to comment.