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
@@ -181,13 +181,129 @@ Emitted when the authentication fails, but only if the login name can be associa
181
181
182
182
Event emitted by apps whenever there was an interaction with another user or contact.
183
183
184
+
It is an event that allows apps to notify other components about an interaction between two users. This can be used to build better recommendations and suggestions in user interfaces.
185
+
186
+
Emitters should add at least one identifier (uid, email, federated cloud ID) of the recipient of the interaction.
187
+
188
+
``\OCP\DirectEditing\RegisterDirectEditorEvent``
189
+
************************************************
190
+
191
+
*Available in Nextcloud 18 and later.*
192
+
193
+
Event to allow to register the direct editor.
194
+
195
+
``\OCP\Files\Events\BeforeFileScannedEvent``
196
+
********************************************
197
+
198
+
*Available in Nextcloud 18 and later.*
199
+
200
+
``\OCP\Files\Events\BeforeFolderScannedEvent``
201
+
**********************************************
202
+
203
+
*Available in Nextcloud 18 and later.*
204
+
205
+
``\OCP\Files\Events\FileCacheUpdated``
206
+
**************************************
207
+
208
+
*Available in Nextcloud 18 and later.*
209
+
210
+
``\OCP\Files\Events\FileScannedEvent``
211
+
**************************************
212
+
213
+
*Available in Nextcloud 18 and later.*
214
+
215
+
``\OCP\Files\Events\FolderScannedEvent``
216
+
****************************************
217
+
218
+
*Available in Nextcloud 18 and later.*
219
+
220
+
``\OCP\Files\Events\NodeAddedToCache``
221
+
**************************************
222
+
223
+
*Available in Nextcloud 18 and later.*
224
+
225
+
``\OCP\Files\Events\NodeRemovedFromCache``
226
+
******************************************
227
+
228
+
*Available in Nextcloud 18 and later.*
229
+
230
+
``\OCP\Group\Events\BeforeGroupCreatedEvent``
231
+
*********************************************
232
+
233
+
*Available in Nextcloud 18 and later.*
234
+
235
+
``\OCP\Group\Events\BeforeGroupDeletedEvent``
236
+
*********************************************
237
+
238
+
*Available in Nextcloud 18 and later.*
239
+
240
+
``\OCP\Group\Events\BeforeUserAddedEvent``
241
+
******************************************
242
+
243
+
*Available in Nextcloud 18 and later.*
244
+
245
+
``\OCP\Group\Events\BeforeUserRemovedEvent``
246
+
********************************************
247
+
248
+
*Available in Nextcloud 18 and later.*
249
+
250
+
``\OCP\Group\Events\GroupCreatedEvent``
251
+
***************************************
252
+
253
+
*Available in Nextcloud 18 and later.*
254
+
255
+
``\OCP\Group\Events\GroupDeletedEvent``
256
+
***************************************
257
+
258
+
*Available in Nextcloud 18 and later.*
259
+
260
+
``\OCP\Group\Events\UserAddedEvent``
261
+
************************************
262
+
263
+
*Available in Nextcloud 18 and later.*
264
+
265
+
``\OCP\Group\Events\UserRemovedEvent``
266
+
**************************************
267
+
268
+
*Available in Nextcloud 18 and later.*
184
269
``\OCP\Mail\Events\BeforeMessageSent``
185
270
**************************************
186
271
187
272
*Available in Nextcloud 19 and later.*
188
273
189
274
Emitted before a system mail is sent. It can be used to alter the message.
Allows to inject something into the default content policy. This is for example useful when you're injecting Javascript code into a view belonging to another controller and cannot modify its Content-Security-Policy itself. Note that the adjustment is only applied to applications that use AppFramework controllers.
282
+
283
+
WARNING: Using this API incorrectly may make the instance more insecure. Do think twice before adding whitelisting resources. Please do also note that it is not possible to use the `disallowXYZ` functions.
0 commit comments