You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/UserGuide.md
+79-1Lines changed: 79 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,10 @@ The Hackathon Participant Management Application is designed to help organizers
16
16
-[Exporting a selected participants](#exporting-selected-participants--link)
17
17
-[Removing a person](#removing-a-person--remove)
18
18
-[Clearing all entries](#clearing-all-entries--clear)
19
+
-[Adding an event](#adding-an-event--addevent)
20
+
-[Listing all events](#listing-all-events--listevent)
21
+
-[Removing an event](#removing-an-event--deleteevent)
22
+
-[Locating events by keywords](#locating-events-by-keywords--findevent)
19
23
-[Exiting the program](#exiting-the-program--exit)
20
24
-[Saving the data](#saving-the-data)
21
25
-[Editing the data file](#editing-the-data-file)
@@ -52,6 +56,14 @@ The Hackathon Participant Management Application is designed to help organizers
52
56
*`Update update John Dow /number 89898989` : Updates the information of the person named "John Doe"
53
57
54
58
*`Comment John Doe`
59
+
60
+
*`addevent en/Meeting ed/11-06-2024 ec/staff` : Adds an event named `meeting`.
61
+
62
+
*`deleteevent 8` : Deletes the 8th event shown in the list.
63
+
64
+
*`findevent meeting` : Finds events which names contain "meeting".
65
+
66
+
*`listevent` : Lists all events.
55
67
56
68
*`clear` : Deletes all contact information.
57
69
@@ -76,7 +88,7 @@ The Hackathon Participant Management Application is designed to help organizers
76
88
* Parameters can be in any order.<br>
77
89
e.g. if the command specifies `n/NAME p/PHONE_NUMBER`, `p/PHONE_NUMBER n/NAME` is also acceptable.
78
90
79
-
* Extraneous parameters for commands that do not take in parameters (such as `help`, `list`, `exit` and `clear`) will be ignored.<br>
91
+
* Extraneous parameters for commands that do not take in parameters (such as `help`, `list`, `listevent`, `exit` and `clear`) will be ignored.<br>
80
92
e.g. if the command specifies `help 123`, it will be interpreted as `help`.
81
93
82
94
* If you are using a PDF version of this document, be careful when copying and pasting commands that span multiple lines as space characters surrounding line-breaks may be omitted when copied over to the application.
@@ -222,6 +234,68 @@ Example: You have successfully deleted participant John Doe.
222
234
Precise expected outputs when the command fails
223
235
* Error: no contact with id <id>. (when name is not in the list)
0 commit comments