lesli_support 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/images/lesli_support/support-logo.svg +1 -9
- data/app/assets/javascripts/lesli_support/application.js +1 -4998
- data/app/assets/stylesheets/lesli_support/application.css +3 -3
- data/app/controllers/lesli_support/catalog/items_controller.rb +60 -0
- data/app/controllers/lesli_support/ticket/actions_controller.rb +4 -0
- data/app/controllers/lesli_support/ticket/activities_controller.rb +60 -0
- data/app/controllers/lesli_support/ticket/discussions_controller.rb +1 -2
- data/app/controllers/lesli_support/tickets_controller.rb +36 -56
- data/app/helpers/lesli_support/{catalog_types_helper.rb → catalog/items_helper.rb} +1 -1
- data/app/helpers/lesli_support/ticket/actions_helper.rb +4 -0
- data/app/helpers/lesli_support/ticket/activities_helper.rb +4 -0
- data/app/models/lesli_support/account.rb +5 -8
- data/app/models/lesli_support/catalog/item.rb +4 -0
- data/app/models/lesli_support/catalog.rb +3 -12
- data/app/models/lesli_support/dashboard.rb +6 -10
- data/app/models/lesli_support/ticket/action.rb +6 -0
- data/app/models/lesli_support/ticket/activity.rb +4 -0
- data/app/models/lesli_support/ticket/discussion.rb +3 -4
- data/app/models/lesli_support/ticket.rb +61 -7
- data/app/services/lesli_support/ticket_service.rb +37 -55
- data/app/views/lesli_support/catalog/items/_form.html.erb +17 -0
- data/app/views/lesli_support/catalog/items/_item.html.erb +2 -0
- data/app/views/lesli_support/catalog/items/edit.html.erb +12 -0
- data/app/views/lesli_support/catalog/items/index.html.erb +16 -0
- data/app/views/lesli_support/catalog/items/new.html.erb +11 -0
- data/app/views/lesli_support/catalog/items/show.html.erb +10 -0
- data/app/views/lesli_support/dashboards/_component-latest-tickets.html.erb +34 -0
- data/app/views/lesli_support/dashboards/_component-tickets-by-category.html.erb +17 -0
- data/app/views/lesli_support/dashboards/_component-tickets-created.html.erb +10 -0
- data/app/views/lesli_support/dashboards/_component-tickets-open.html.erb +5 -0
- data/app/views/lesli_support/tickets/_form.html.erb +27 -0
- data/app/views/lesli_support/tickets/index.html.erb +35 -4
- data/app/views/lesli_support/tickets/new.html.erb +31 -14
- data/app/views/lesli_support/tickets/show.html.erb +27 -15
- data/config/locales/translations.en.yml +1 -42
- data/config/locales/translations.es.yml +1 -42
- data/config/locales/translations.fr.yml +1 -42
- data/config/locales/translations.it.yml +1 -42
- data/config/locales/translations.pt.yml +1 -42
- data/config/routes.rb +5 -25
- data/db/migrate/v1/0702000110_create_lesli_support_accounts.rb +3 -8
- data/db/migrate/v1/0702002010_create_lesli_support_catalogs.rb +37 -0
- data/db/migrate/v1/0702100110_create_lesli_support_slas.rb +2 -6
- data/db/migrate/v1/0702110110_create_lesli_support_tickets.rb +26 -50
- data/db/seed/development.rb +43 -22
- data/db/seed/production.rb +7 -2
- data/db/seed/seeds.json +64 -0
- data/db/seed/test.rb +2 -2
- data/db/seeds.rb +5 -12
- data/db/{migrate/v1/0702000210_create_lesli_support_account_settings.rb → tables/0010009010_create_feedbacks.rb} +21 -11
- data/db/{migrate/v1 → tables}/0702010110_create_lesli_support_catalog_workspaces.rb +7 -7
- data/db/{migrate/v1 → tables}/0702010210_create_lesli_support_catalog_types.rb +6 -6
- data/db/{migrate/v1 → tables}/0702010310_create_lesli_support_catalog_categories.rb +7 -7
- data/db/{migrate/v1 → tables}/0702010410_create_lesli_support_catalog_priorities.rb +7 -7
- data/lib/lesli_support/version.rb +2 -2
- data/lib/scss/application.scss +0 -11
- data/lib/vue/apps/tickets/components/table.vue +94 -0
- data/lib/vue/apps/tickets/index.vue +3 -3
- data/lib/vue/apps/tickets/new.vue +2 -2
- data/lib/vue/stores/translations.json +10 -120
- data/readme.md +77 -25
- metadata +36 -69
- data/app/controllers/lesli_support/catalog_categories_controller.rb +0 -60
- data/app/controllers/lesli_support/catalog_priorities_controller.rb +0 -60
- data/app/controllers/lesli_support/catalog_types_controller.rb +0 -60
- data/app/controllers/lesli_support/catalog_workspaces_controller.rb +0 -60
- data/app/controllers/lesli_support/dashboard/components_controller.rb +0 -92
- data/app/helpers/lesli_support/catalog_categories_helper.rb +0 -4
- data/app/helpers/lesli_support/catalog_priorities_helper.rb +0 -4
- data/app/helpers/lesli_support/catalog_workspaces_helper.rb +0 -4
- data/app/models/lesli_support/catalog_category.rb +0 -5
- data/app/models/lesli_support/catalog_priority.rb +0 -5
- data/app/models/lesli_support/catalog_type.rb +0 -5
- data/app/models/lesli_support/catalog_workspace.rb +0 -5
- data/app/models/lesli_support/dashboard/component.rb +0 -18
- data/app/views/layouts/lesli_support/application.html.erb +0 -15
- data/app/views/lesli_support/catalog_categories/_catalog_category.html.erb +0 -2
- data/app/views/lesli_support/catalog_categories/_form.html.erb +0 -17
- data/app/views/lesli_support/catalog_categories/edit.html.erb +0 -10
- data/app/views/lesli_support/catalog_categories/index.html.erb +0 -14
- data/app/views/lesli_support/catalog_categories/new.html.erb +0 -9
- data/app/views/lesli_support/catalog_categories/show.html.erb +0 -10
- data/app/views/lesli_support/catalog_priorities/_catalog_priority.html.erb +0 -2
- data/app/views/lesli_support/catalog_priorities/_form.html.erb +0 -17
- data/app/views/lesli_support/catalog_priorities/edit.html.erb +0 -10
- data/app/views/lesli_support/catalog_priorities/index.html.erb +0 -14
- data/app/views/lesli_support/catalog_priorities/new.html.erb +0 -9
- data/app/views/lesli_support/catalog_priorities/show.html.erb +0 -10
- data/app/views/lesli_support/catalog_types/_catalog_type.html.erb +0 -2
- data/app/views/lesli_support/catalog_types/_form.html.erb +0 -17
- data/app/views/lesli_support/catalog_types/edit.html.erb +0 -10
- data/app/views/lesli_support/catalog_types/index.html.erb +0 -14
- data/app/views/lesli_support/catalog_types/new.html.erb +0 -9
- data/app/views/lesli_support/catalog_types/show.html.erb +0 -10
- data/app/views/lesli_support/catalog_workspaces/_catalog_workspace.html.erb +0 -2
- data/app/views/lesli_support/catalog_workspaces/_form.html.erb +0 -17
- data/app/views/lesli_support/catalog_workspaces/edit.html.erb +0 -10
- data/app/views/lesli_support/catalog_workspaces/index.html.erb +0 -14
- data/app/views/lesli_support/catalog_workspaces/new.html.erb +0 -9
- data/app/views/lesli_support/catalog_workspaces/show.html.erb +0 -10
- data/app/views/lesli_support/dashboards/edit.html.erb +0 -1
- data/app/views/lesli_support/dashboards/index.html.erb +0 -1
- data/app/views/lesli_support/dashboards/new.html.erb +0 -1
- data/app/views/lesli_support/dashboards/show.html.erb +0 -1
- data/app/views/lesli_support/ticket/discussions/_discussion.html.erb +0 -2
- data/app/views/lesli_support/ticket/discussions/_form.html.erb +0 -17
- data/app/views/lesli_support/ticket/discussions/edit.html.erb +0 -10
- data/app/views/lesli_support/ticket/discussions/index.html.erb +0 -14
- data/app/views/lesli_support/ticket/discussions/new.html.erb +0 -9
- data/app/views/lesli_support/ticket/discussions/show.html.erb +0 -10
- data/app/views/lesli_support/tickets/edit.html.erb +0 -20
- data/db/migrate/v1/0702050110_create_lesli_support_dashboards.rb +0 -50
- data/db/migrate/v1/0702050210_create_lesli_support_dashboard_components.rb +0 -50
- data/db/migrate/v1/0702110510_create_lesli_support_ticket_discussions.rb +0 -52
- /data/app/views/lesli_support/partials/{_engine-navigation.html.erb → _navigation.html.erb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0aba3f933b74f64c9c7917089c6d11d1214ab0d7580824fd1e8e2ca4e0aeac49
|
|
4
|
+
data.tar.gz: 4ae9fdbecd0feb6cd77333d1bc0d6dbba389fb939dc55235b6a0170bd430f0e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 707825be39826856ee3b923dad0b14f1e0eb582c965f24d5ed2e7fd3fc4ab551d12199045c5c9d8341c9cc046704615d112e5769628a589ca06dae54981b7fea
|
|
7
|
+
data.tar.gz: 19d6e69530ce864cd54d45bcf3b35f5fdc5c604ee2eca5203f69eb4e5050b6e59ea2f4b8037ab324e2a1ea616fca5a6d506b46bb0732d84bb05b55a61a711717
|
|
@@ -1,9 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<path fill="#e4e7e7" d="M112 62.1c-.1-1.4-.2-2.7-.3-4.1l2.6-2.6c11.5-11.5 11.5-30.3 0-41.7-11.5-11.5-30.2-11.5-41.7 0L70 16.3c-1.3-.2-2.7-.3-4.1-.3l4.5-4.5c12.7-12.7 33.4-12.8 46.1 0 12.7 12.7 12.7 33.4 0 46.1l-4.5 4.5zM58.1 16.4l-2.6-2.6C44 2.3 25.2 2.3 13.8 13.8 2.2 25.2 2.2 44 13.8 55.5l2.6 2.6c-.2 1.3-.3 2.7-.3 4.1l-4.5-4.5C-1.1 45-1.2 24.3 11.6 11.6 24.3-1.1 45-1.1 57.7 11.6l4.5 4.5c-1.4 0-2.8.1-4.1.3zM16 65.9c.1 1.4.2 2.7.3 4.1l-2.6 2.6c-11.5 11.5-11.5 30.3-.1 41.7 11.5 11.5 30.2 11.5 41.7 0l2.6-2.6c1.3.2 2.7.3 4.1.3l-4.5 4.5c-12.7 12.7-33.4 12.8-46.1.1-12.7-12.7-12.7-33.4.1-46.1l4.5-4.6zm53.9 45.7 2.6 2.6c11.5 11.5 30.3 11.5 41.7 0 11.5-11.5 11.5-30.2-.1-41.7l-2.6-2.6c.2-1.3.3-2.7.3-4.1l4.5 4.5c12.7 12.7 12.8 33.4.1 46.1-12.7 12.7-33.4 12.7-46.1-.1l-4.5-4.5c1.4.1 2.8 0 4.1-.2z"/>
|
|
3
|
-
<path fill="#e2574c" d="M64 0C28.7 0 0 28.7 0 64s28.6 64 64 64c35.3 0 64-28.7 64-64S99.3 0 64 0zm0 96c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"/>
|
|
4
|
-
<path fill="#d95449" d="M64 24.3c-21.9 0-39.7 17.8-39.7 39.7 0 21.9 17.8 39.7 39.7 39.7 21.9 0 39.7-17.8 39.7-39.7 0-21.9-17.8-39.7-39.7-39.7zM64 96c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"/>
|
|
5
|
-
<path fill="#e5685e" d="M64 9C33.6 9 9 33.6 9 64s24.6 55 55 55 55-24.6 55-55S94.4 9 64 9zm0 106c-28.2 0-51-22.8-51-51s22.8-51 51-51 51 22.8 51 51-22.8 51-51 51z"/>
|
|
6
|
-
<path d="M49.1 92.3c-5.8-3-10.5-7.8-13.5-13.5L12.5 102c3.8 5.1 8.3 9.7 13.5 13.5l23.1-23.2zM78.8 35.6c5.8 3 10.5 7.7 13.5 13.5L115.5 26c-3.8-5.1-8.4-9.7-13.5-13.5L78.8 35.6zM12.5 26l23.1 23.1c3-5.8 7.7-10.5 13.5-13.5L26 12.5c-5.1 3.8-9.7 8.4-13.5 13.5zM115.5 102 92.4 78.9c-3 5.8-7.7 10.5-13.5 13.5l23.1 23.1c5.1-3.8 9.7-8.4 13.5-13.5z" class="st4"/>
|
|
7
|
-
<path d="m84.5 30-5.6 5.6c5.8 3 10.5 7.7 13.5 13.5l5.6-5.6C94.6 38 90 33.3 84.5 30zM35.6 78.8 30 84.5C33.3 90 38 94.6 43.5 98l5.6-5.6c-5.7-3.1-10.4-7.8-13.5-13.6zM78.9 92.4l5.6 5.6C90 94.7 94.6 90 98 84.5l-5.6-5.6c-3.1 5.7-7.8 10.4-13.5 13.5zM49.2 35.7 43.5 30C38 33.4 33.4 38 30 43.5l5.6 5.6c3.1-5.7 7.8-10.4 13.6-13.4z" class="st5"/>
|
|
8
|
-
<path d="m21.8 92.7-2.9 2.9c3.7 5.2 8.2 9.8 13.5 13.5l2.9-2.9c-5.3-3.7-9.9-8.2-13.5-13.5zM106.2 92.7c-3.6 5.3-8.2 9.9-13.5 13.5l2.9 2.9c5.2-3.7 9.8-8.3 13.5-13.5l-2.9-2.9zM21.8 35.3c3.6-5.3 8.2-9.9 13.5-13.5L32.5 19c-5.2 3.7-9.8 8.3-13.5 13.5l2.8 2.8zM106.2 35.3l2.9-2.9c-3.7-5.2-8.3-9.8-13.5-13.5l-2.9 2.9c5.3 3.6 9.8 8.2 13.5 13.5z" class="st6"/>
|
|
9
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128.51 128.51" fill="#001F66"><path d="M112.25 62.35c-.1-1.4-.2-2.7-.3-4.1l2.6-2.6c11.5-11.5 11.5-30.3 0-41.7-11.5-11.5-30.2-11.5-41.7 0l-2.6 2.6c-1.3-.2-2.7-.3-4.1-.3l4.5-4.5c12.7-12.7 33.4-12.8 46.1 0 12.7 12.7 12.7 33.4 0 46.1zm-53.9-45.7-2.6-2.6c-11.5-11.5-30.3-11.5-41.7 0-11.6 11.4-11.6 30.2 0 41.7l2.6 2.6c-.2 1.3-.3 2.7-.3 4.1l-4.5-4.5c-12.7-12.7-12.8-33.4 0-46.1 12.7-12.7 33.4-12.7 46.1 0l4.5 4.5c-1.4 0-2.8.1-4.1.3m-42.1 49.5c.1 1.4.2 2.7.3 4.1l-2.6 2.6c-11.5 11.5-11.5 30.3-.1 41.7 11.5 11.5 30.2 11.5 41.7 0l2.6-2.6c1.3.2 2.7.3 4.1.3l-4.5 4.5c-12.7 12.7-33.4 12.8-46.1.1s-12.7-33.4.1-46.1zm53.9 45.7 2.6 2.6c11.5 11.5 30.3 11.5 41.7 0 11.5-11.5 11.5-30.2-.1-41.7l-2.6-2.6c.2-1.3.3-2.7.3-4.1l4.5 4.5c12.7 12.7 12.8 33.4.1 46.1s-33.4 12.7-46.1-.1l-4.5-4.5c1.4.1 2.8 0 4.1-.2"/><path d="M64.25 24.55c-21.9 0-39.7 17.8-39.7 39.7s17.8 39.7 39.7 39.7 39.7-17.8 39.7-39.7-17.8-39.7-39.7-39.7m0 71.7c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32"/><path d="M64.25 9.25c-30.4 0-55 24.6-55 55s24.6 55 55 55 55-24.6 55-55-24.6-55-55-55m0 106c-28.2 0-51-22.8-51-51s22.8-51 51-51 51 22.8 51 51-22.8 51-51 51"/><path d="M35.85 79.05c.05.1.12.2.17.3-2.41-4.5-3.77-9.63-3.77-15.1 0-17.7 14.3-32 32-32 5.48 0 10.64 1.37 15.14 3.79-.12-.06-.22-.13-.34-.19l23.18-23.08C91.6 4.91 78.47.25 64.25.25S36.9 4.91 26.27 12.77l23.08 23.08c-5.8 3-10.5 7.7-13.5 13.5L12.77 26.27C4.91 36.9.25 50.04.25 64.25s4.65 27.36 12.5 38zM87.6 42.36c-.55-.59-1.13-1.16-1.72-1.71.6.55 1.17 1.12 1.72 1.71M38.39 83.1s.03.04.04.06c-.01-.02-.03-.04-.04-.06m1.51 1.92.03.03c0-.01-.02-.02-.03-.03m40.57-48.36c.51.3 1.01.61 1.49.93-.49-.32-.99-.63-1.49-.93m-1.32 55.99c5.8-3 10.5-7.7 13.5-13.5l23.08 23.08c7.86-10.63 12.52-23.77 12.52-37.98s-4.66-27.35-12.52-37.98L92.57 49.33c2.35 4.45 3.68 9.53 3.68 14.92 0 17.7-14.3 32-32 32-5.39 0-10.47-1.33-14.92-3.68l-23.08 23.18c10.62 7.85 23.76 12.5 38 12.5s27.35-4.66 37.98-12.52zm9.62-48.98c-.22-.26-.45-.52-.67-.78.23.26.45.51.67.78M36.99 81.03c.07.11.14.21.21.32-.07-.11-.14-.21-.21-.32m53.05-35.75s-.04-.06-.07-.09c.02.03.04.06.07.09"/><path d="m84.75 30.25-5.6 5.6c5.8 3 10.5 7.7 13.5 13.5l5.6-5.6c-3.4-5.5-8-10.2-13.5-13.5m-48.9 48.8-5.6 5.7c3.3 5.5 8 10.1 13.5 13.5l5.6-5.6c-5.7-3.1-10.4-7.8-13.5-13.6m43.3 13.6 5.6 5.6c5.5-3.3 10.1-8 13.5-13.5l-5.6-5.6c-3.1 5.7-7.8 10.4-13.5 13.5m-29.7-56.7-5.7-5.7c-5.5 3.4-10.1 8-13.5 13.5l5.6 5.6c3.1-5.7 7.8-10.4 13.6-13.4m-27.4 57-2.9 2.9c3.7 5.2 8.2 9.8 13.5 13.5l2.9-2.9c-5.3-3.7-9.9-8.2-13.5-13.5m84.4 0c-3.6 5.3-8.2 9.9-13.5 13.5l2.9 2.9c5.2-3.7 9.8-8.3 13.5-13.5zm-84.4-57.4c3.6-5.3 8.2-9.9 13.5-13.5l-2.8-2.8c-5.2 3.7-9.8 8.3-13.5 13.5z"/><circle cx="64.25" cy="64.25" r="63.75" fill="none" stroke="#000" stroke-miterlimit="10"/></svg>
|