event-index: Use camel case for the user/device id.

This commit is contained in:
Damir Jelić 2020-10-13 17:03:58 +02:00
parent 5989a21dfb
commit 860b1b46e0
2 changed files with 7 additions and 7 deletions

View file

@ -105,13 +105,13 @@ export default abstract class BaseEventIndexManager {
/**
* Initialize the event index for the given user.
*
* @param {string} user_id The event that should be added to the index.
* @param {string} device_id The profile of the event sender at the
* @param {string} userId The event that should be added to the index.
* @param {string} deviceId The profile of the event sender at the
*
* @return {Promise} A promise that will resolve when the event index is
* initialized.
*/
async initEventIndex(user_id: string, device_id: string): Promise<void> {
async initEventIndex(userId: string, deviceId: string): Promise<void> {
throw new Error("Unimplemented");
}