diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2024-02-22 17:32:40 +0100 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2024-02-22 17:32:40 +0100 | 
| commit | 2c3bc9ad65fc70efdd8e981b0bc49346b2ef646f (patch) | |
| tree | 0b7ca7dcaaeb737b7e539ce4c3992d18c6949370 /src/plugins | |
| parent | 5c6c59a0325c2f3cc611b8186ac289d011c14369 (diff) | |
| parent | 2bb26608f735b6fc90c06a56793e1cf6e164830a (diff) | |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/PublishingInterfaces.vala | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/PublishingInterfaces.vala b/src/plugins/PublishingInterfaces.vala index 05b161f..84cb943 100644 --- a/src/plugins/PublishingInterfaces.vala +++ b/src/plugins/PublishingInterfaces.vala @@ -92,6 +92,9 @@ public errordomain PublishingError {      SSL_FAILED  } +public interface AuthenticatedCallback : Object { +    public abstract void authenticated(HashTable<string, string> params); +}  /**    * Represents a connection to a publishing service.   * @@ -503,6 +506,10 @@ public interface PluginHost : GLib.Object, Spit.HostInterface {       */      public abstract Spit.Publishing.Publisher.MediaType get_publishable_media_type(); + +    public abstract void register_auth_callback(string cookie, AuthenticatedCallback callback); +    public abstract void unregister_auth_callback(string cookie); +      //      // For future expansion.      //  | 
