@@ -11,11 +11,18 @@ pub fn templates() -> Vec<WebAppTemplate> {
1111 comment: "Edit documents online with Microsoft Word" . into( ) ,
1212 generic_name: "Word Processor" . into( ) ,
1313 keywords: vec![ "word" , "document" , "office" , "docx" , "microsoft" ]
14- . into_iter( ) . map( Into :: into) . collect( ) ,
14+ . into_iter( )
15+ . map( Into :: into)
16+ . collect( ) ,
1517 mime_types: vec![
1618 "application/vnd.openxmlformats-officedocument.wordprocessingml.document" ,
17- "application/msword" , "application/rtf" , "text/rtf" ,
18- ] . into_iter( ) . map( Into :: into) . collect( ) ,
19+ "application/msword" ,
20+ "application/rtf" ,
21+ "text/rtf" ,
22+ ]
23+ . into_iter( )
24+ . map( Into :: into)
25+ . collect( ) ,
1926 file_handler: FileHandler :: Upload ,
2027 profile: "office365" . into( ) ,
2128 ..Default :: default ( )
@@ -29,11 +36,18 @@ pub fn templates() -> Vec<WebAppTemplate> {
2936 comment: "Edit spreadsheets online with Microsoft Excel" . into( ) ,
3037 generic_name: "Spreadsheet" . into( ) ,
3138 keywords: vec![ "excel" , "spreadsheet" , "office" , "xlsx" , "csv" , "microsoft" ]
32- . into_iter( ) . map( Into :: into) . collect( ) ,
39+ . into_iter( )
40+ . map( Into :: into)
41+ . collect( ) ,
3342 mime_types: vec![
3443 "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ,
35- "application/vnd.ms-excel" , "text/csv" , "application/csv" ,
36- ] . into_iter( ) . map( Into :: into) . collect( ) ,
44+ "application/vnd.ms-excel" ,
45+ "text/csv" ,
46+ "application/csv" ,
47+ ]
48+ . into_iter( )
49+ . map( Into :: into)
50+ . collect( ) ,
3751 file_handler: FileHandler :: Upload ,
3852 profile: "office365" . into( ) ,
3953 ..Default :: default ( )
@@ -46,12 +60,24 @@ pub fn templates() -> Vec<WebAppTemplate> {
4660 category: "Office" . into( ) ,
4761 comment: "Create presentations online with Microsoft PowerPoint" . into( ) ,
4862 generic_name: "Presentation" . into( ) ,
49- keywords: vec![ "powerpoint" , "presentation" , "office" , "pptx" , "slides" , "microsoft" ]
50- . into_iter( ) . map( Into :: into) . collect( ) ,
63+ keywords: vec![
64+ "powerpoint" ,
65+ "presentation" ,
66+ "office" ,
67+ "pptx" ,
68+ "slides" ,
69+ "microsoft" ,
70+ ]
71+ . into_iter( )
72+ . map( Into :: into)
73+ . collect( ) ,
5174 mime_types: vec![
5275 "application/vnd.openxmlformats-officedocument.presentationml.presentation" ,
5376 "application/vnd.ms-powerpoint" ,
54- ] . into_iter( ) . map( Into :: into) . collect( ) ,
77+ ]
78+ . into_iter( )
79+ . map( Into :: into)
80+ . collect( ) ,
5581 file_handler: FileHandler :: Upload ,
5682 profile: "office365" . into( ) ,
5783 ..Default :: default ( )
@@ -65,7 +91,9 @@ pub fn templates() -> Vec<WebAppTemplate> {
6591 comment: "Take notes online with Microsoft OneNote" . into( ) ,
6692 generic_name: "Note Taking" . into( ) ,
6793 keywords: vec![ "onenote" , "notes" , "office" , "microsoft" ]
68- . into_iter( ) . map( Into :: into) . collect( ) ,
94+ . into_iter( )
95+ . map( Into :: into)
96+ . collect( ) ,
6997 profile: "office365" . into( ) ,
7098 ..Default :: default ( )
7199 } ,
@@ -78,7 +106,9 @@ pub fn templates() -> Vec<WebAppTemplate> {
78106 comment: "Email and calendar from Microsoft Outlook" . into( ) ,
79107 generic_name: "Email Client" . into( ) ,
80108 keywords: vec![ "outlook" , "email" , "mail" , "calendar" , "microsoft" ]
81- . into_iter( ) . map( Into :: into) . collect( ) ,
109+ . into_iter( )
110+ . map( Into :: into)
111+ . collect( ) ,
82112 features: vec![ "notifications" . into( ) ] ,
83113 profile: "office365" . into( ) ,
84114 ..Default :: default ( )
@@ -92,7 +122,9 @@ pub fn templates() -> Vec<WebAppTemplate> {
92122 comment: "Chat and video conferencing with Microsoft Teams" . into( ) ,
93123 generic_name: "Instant Messaging" . into( ) ,
94124 keywords: vec![ "teams" , "chat" , "video" , "conferencing" , "microsoft" ]
95- . into_iter( ) . map( Into :: into) . collect( ) ,
125+ . into_iter( )
126+ . map( Into :: into)
127+ . collect( ) ,
96128 features: vec![ "notifications" . into( ) , "camera" . into( ) , "microphone" . into( ) ] ,
97129 profile: "office365" . into( ) ,
98130 ..Default :: default ( )
@@ -106,7 +138,9 @@ pub fn templates() -> Vec<WebAppTemplate> {
106138 comment: "Cloud storage from Microsoft OneDrive" . into( ) ,
107139 generic_name: "Cloud Storage" . into( ) ,
108140 keywords: vec![ "onedrive" , "cloud" , "storage" , "files" , "microsoft" ]
109- . into_iter( ) . map( Into :: into) . collect( ) ,
141+ . into_iter( )
142+ . map( Into :: into)
143+ . collect( ) ,
110144 profile: "office365" . into( ) ,
111145 ..Default :: default ( )
112146 } ,
@@ -119,7 +153,9 @@ pub fn templates() -> Vec<WebAppTemplate> {
119153 comment: "Microsoft 365 home β access all Office apps" . into( ) ,
120154 generic_name: "Office Suite" . into( ) ,
121155 keywords: vec![ "office" , "365" , "microsoft" , "word" , "excel" , "powerpoint" ]
122- . into_iter( ) . map( Into :: into) . collect( ) ,
156+ . into_iter( )
157+ . map( Into :: into)
158+ . collect( ) ,
123159 profile: "office365" . into( ) ,
124160 ..Default :: default ( )
125161 } ,
0 commit comments