mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
2.3 KiB
2.3 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Local Preference Cloud Service | v3.4.0 | Experimental | 2019-08-06 |
Local Preference Cloud Service
Manages Local Storage preferences.
Class members
Methods
- createPreference(key:
string
, newPreference:any
):Observable
<any>
Creates local preference.- key:
string
- Key of the target preference - newPreference:
any
- Details of new local preference - Returns
Observable
<any>
- Observable of created local preferences
- key:
- deletePreference(key:
string
, preferences:any
):Observable
<any>
Deletes local preference by given preference key.- key:
string
- Key of the target preference - preferences:
any
- Details of updated preferences - Returns
Observable
<any>
- Observable of preferences without deleted preference
- key:
- getPreferenceByKey(key:
string
):Observable
<any>
Gets local preference.- key:
string
- Key of the target preference - Returns
Observable
<any>
- Observable of local preference
- key:
- getPreferences(key:
string
):Observable
<any>
Gets local preferences- key:
string
- (Optional) - Returns
Observable
<any>
- List of local preferences
- key:
- updatePreference(key:
string
, updatedPreference:any
):Observable
<any>
Updates local preference.- key:
string
- Key of the target preference - updatedPreference:
any
- Details of updated preference - Returns
Observable
<any>
- Observable of updated local preferences
- key: