Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#976 Added snapshat support #977

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

## \#3 unreleased

* Added: Snapchat support for assignment tasks
* Added: Confirmation dialog when skipping content pages or consent pages in assignment configuration.

## \#2 2024-10-04
Expand Down
4 changes: 4 additions & 0 deletions core/priv/gettext/de/LC_MESSAGES/eyra-enums.po
Original file line number Diff line number Diff line change
Expand Up @@ -438,3 +438,7 @@ msgstr ""
#, elixir-autogen, elixir-format
msgid "crew_task_status.rejected"
msgstr ""

#, elixir-autogen, elixir-format, fuzzy
msgid "platforms.snapchat"
msgstr "Snapchat"
4 changes: 4 additions & 0 deletions core/priv/gettext/en/LC_MESSAGES/eyra-enums.po
Original file line number Diff line number Diff line change
Expand Up @@ -437,3 +437,7 @@ msgstr "started"
#, elixir-autogen, elixir-format
msgid "crew_task_status.rejected"
msgstr "rejected"

#, elixir-autogen, elixir-format, fuzzy
msgid "platforms.snapchat"
msgstr "Snapchat"
4 changes: 4 additions & 0 deletions core/priv/gettext/eyra-enums.pot
Original file line number Diff line number Diff line change
Expand Up @@ -437,3 +437,7 @@ msgstr ""
#, elixir-autogen, elixir-format
msgid "crew_task_status.rejected"
msgstr ""

#, elixir-autogen, elixir-format
msgid "platforms.snapchat"
msgstr ""
4 changes: 4 additions & 0 deletions core/priv/gettext/nl/LC_MESSAGES/eyra-enums.po
Original file line number Diff line number Diff line change
Expand Up @@ -437,3 +437,7 @@ msgstr ""
#, elixir-autogen, elixir-format
msgid "crew_task_status.rejected"
msgstr ""

#, elixir-autogen, elixir-format, fuzzy
msgid "platforms.snapchat"
msgstr "Snapchat"
5 changes: 5 additions & 0 deletions core/priv/static/images/icons/snapchat.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions core/priv/static/images/icons/snapchat_square.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions core/systems/workflow/platforms.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
defmodule Systems.Workflow.Platforms do
@moduledoc """
Defines DDP platforms that are supported out of the box.
Make sure to add icons for each platform in the `priv/static/images/icons` directory:
* <platform>.svg
* <platform>_square.svg
See Figma https://www.figma.com/design/RXKuvMFGz3Eln5MNPJ1q6a/Design-system?node-id=470-10741&t=XxCVZd4kNTsfcQP7-1 for reference.
"""
use Core.Enums.Base,
{:platforms,
Expand All @@ -11,6 +15,7 @@ defmodule Systems.Workflow.Platforms do
:instagram,
:netflix,
:samsung,
:snapchat,
:tiktok,
:whatsapp,
:x,
Expand Down
Loading