diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-02-22 17:32:07 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-02-22 17:32:07 +0100 |
commit | 5303f650e34763817d7eeb1d3ba774bdec3e1a38 (patch) | |
tree | 8ad5028940b931abe0eee441e12357f970c656de /src/publishing | |
parent | f5a0cee8ccecc7b6c6c2d8e9fb6f6eecd53531fe (diff) |
New upstream version 0.32.6upstream/0.32.6
Diffstat (limited to 'src/publishing')
-rw-r--r-- | src/publishing/PublishingPluginHost.vala | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/publishing/PublishingPluginHost.vala b/src/publishing/PublishingPluginHost.vala index 7804924..88b99e7 100644 --- a/src/publishing/PublishingPluginHost.vala +++ b/src/publishing/PublishingPluginHost.vala @@ -33,6 +33,14 @@ public class ConcretePublishingHost : Plugins.StandardHostInterface, this.active_publisher = service.create_publisher_with_account(this, account); } + public void register_auth_callback(string cookie, AuthenticatedCallback callback) { + Application.register_auth_callback(cookie, callback); + } + + public void unregister_auth_callback(string cookie) { + Application.unregister_auth_callback(cookie); + } + public string get_current_profile_id() { return Shotwell.ProfileManager.get_instance().id(); } |