* src/mod_pubsub/node_flat.erl: renamed from node_zoo
+ * src/mod_pubsub/mod_pubsub.erl: reply to suscriptions options queries
+ with unsupported feature error (EJAB-713)
2008-12-08 Mickael Remond <mremond@process-one.net>
get_subscriptions(Host, From, Plugins);
{get, "affiliations"} ->
get_affiliations(Host, From, Plugins);
+ {get, "options"} ->
+ {error, extended_error(?ERR_FEATURE_NOT_IMPLEMENTED, unsupported, "subscription-options")};
+ {set, "options"} ->
+ {error, extended_error(?ERR_FEATURE_NOT_IMPLEMENTED, unsupported, "subscription-options")};
_ ->
{error, ?ERR_FEATURE_NOT_IMPLEMENTED}
end;