1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can create YouTube posts

This commit is contained in:
2020-04-25 17:16:33 +02:00
parent bb62a3a159
commit da48328c92
6 changed files with 128 additions and 41 deletions

View File

@ -167,6 +167,10 @@ class PostsHelper {
request.addString("answers", post.survey.answers.join("<>"));
break;
case PostKind.YOUTUBE:
request.addString("youtube_id", post.youtubeId);
break;
default:
throw Exception("Unsupported post type :" + post.kind.toString());
break;