Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
Updated ticket search query, app icons and README (#5)
Browse files Browse the repository at this point in the history
[Fix] : Add missing icons used in request forms are added to source control under wwwroot/Artifacts folder. 
[Fix] : Updated ticket search query for Unassigned tab in messaging extension. Currently the search query check ticket status along with null assigned to name (not required).
[Fix] : Input text form in configuration admin app fix to get correct resource property name for button.
[Fix] : Added application title name in README
  • Loading branch information
abbodh authored Apr 16, 2020
1 parent ae9b772 commit 9613cc6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ description: Microsoft Teams bot and messaging extension to search & report inci
urlFragment: microsoft-teams-apps-incidentreport
---

# Incident Reporter App Template

| [Documentation](https://github.com/OfficeDev/microsoft-teams-apps-incidentreport/wiki/Home) | [Deployment guide](https://github.com/OfficeDev/microsoft-teams-apps-incidentreport/wiki/Deployment-Guide) | [Architecture](https://github.com/OfficeDev/microsoft-teams-apps-incidentreport/wiki/Solution-Overview) |
| ---- | ---- | ---- |

Expand All @@ -22,7 +24,7 @@ The Incident Reporter bot in Microsoft Teams, helps you to easily and quickly re

![Messaging extension for experts](https://github.com/OfficeDev/microsoft-teams-apps-incidentreport/wiki/Images/Message-extensions.jpg)

## Legal Notice
## Legal notice
Please read the license terms applicable to this app template [here](https://github.com/OfficeDev/microsoft-teams-apps-incidentreport/blob/master/LICENSE). In addition to these terms, by using this app template you agree to the following:

* You are responsible for complying with applicable privacy and security regulations related to use, collection and handling of any personal data by your app. This includes complying with all internal privacy and security policies of your organization if your app is developed to be sideloaded internally within your organization.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ public async Task<IList<TicketDetail>> SearchTicketsAsync(TicketSearchScope sear
break;

case TicketSearchScope.AssignedTickets:
searchParameters.Filter = $"TicketStatus eq {(int)TicketState.Assigned} and AssignedToName ne null";
searchParameters.Filter = $"TicketStatus eq {(int)TicketState.Assigned}";
searchParameters.OrderBy = new[] { "Timestamp desc" };
break;

case TicketSearchScope.UnassignedTickets:
searchParameters.Filter = $"TicketStatus eq {(int)TicketState.Unassigned} and AssignedToName eq null";
searchParameters.Filter = $"TicketStatus eq {(int)TicketState.Unassigned}";
searchParameters.OrderBy = new[] { "Timestamp desc" };
break;
case TicketSearchScope.ActiveTickets:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const InputTextForm: React.FunctionComponent<IPropertiesProps> = (props) => {
<Input fluid placeholder={props.resourceStrings.placeholderText} value={properties.placeholder} onChange={(e: any) => { setProperties({ ...properties, placeholder: e.target.value }) }} />
</>
</Flex.Item>
<Button content={props.resourceStrings.common.btnAddComponent} onClick={onAddComponent} />
<Button content={props.resourceStrings.btnAddComponent} onClick={onAddComponent} />
</>
);
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9613cc6

Please sign in to comment.