This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .css-1dbjc4n.r-13awgt0.r-18u37iz.r-1w6e6rj, | |
| [data-testid="unlike"] .css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0, | |
| [data-testid="like"] .css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0, | |
| .css-4rbku5.css-18t94o4.css-901oao.r-hkyrab.r-1loqt21.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0, | |
| .css-901oao.css-16my406.r-4qtqp9.r-ip8ujx.r-sjv1od.r-zw8f10.r-bnwqim.r-h9hxbl > div { | |
| display: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| # allow all methods | |
| header('Access-Control-Allow-Methods: POST, GET, PUT, PATCH, DELETE, OPTIONS'); | |
| # allow some headers | |
| header('Access-Control-Allow-Headers: Authorization, Bearer, Device, Origin, Accept, Content-Type'); | |
| # allow expose some headers | |
| header('Access-Control-Expose-Headers: Authorization, Bearer, Device'); | |
| # get the request method | |
| $method = $_SERVER['REQUEST_METHOD'] ?? null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <QCard | |
| bordered | |
| style="min-height: calc(30vh + 40px)" | |
| > | |
| <QCardSection class="row"> | |
| <div class="col-sm-6 flex justify-sm-center justify-start items-center"> | |
| <div class="q-mb-md text-weight-medium"> | |
| {{ $lang('pages.dashboard.index.charts.transaction-history') }} | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Schema from '@devitools/Agnostic/Schema' | |
| import Service from './InviteService' | |
| import { domain } from '../settings' | |
| import { Component, Context, SchemaTable } from '@devitools/Agnostic/Helper/interfaces' | |
| import { positions, scopes, SCOPES } from '@devitools/Agnostic/enum' | |
| import { unique } from '@devitools/Util/general' | |
| import { RULES } from 'src/settings/schema' | |
| import { replacement } from '@devitools/Util/string' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # tevun/quasar | |
| FROM node:alpine | |
| RUN apk --update add openssh-client git | |
| RUN npm install --global \ | |
| @vue/[email protected] && \ | |
| @vue/[email protected] \ | |
| @quasar/[email protected]\ | |
| [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Loading, Notify } from 'quasar' | |
| import { register } from 'register-service-worker' | |
| import $lang from '@devitools/Lang' | |
| // The ready(), registered(), cached(), updatefound() and updated() | |
| // events passes a ServiceWorkerRegistration instance in their arguments. | |
| // ServiceWorkerRegistration: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration | |
| register(process.env.SERVICE_WORKER_FILE, { | |
| // The registrationOptions object will be passed as the second argument |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| # Networks | |
| networks: | |
| # Internal network | |
| internal: | |
| driver: bridge | |
| # Volumes | |
| volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Source\Domains\General; | |
| use Devitools\Persistence\AbstractModel; | |
| /** | |
| * Class Category |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <QField | |
| class="AppPhoneInternational" | |
| v-bind="{ ...$attrs, ...$props }" | |
| @clear="$emit('input', '')" | |
| > | |
| <div | |
| ref="root" | |
| class="AppPhoneInternational__root" | |
| /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| xdebug.auto_trace = Off | |
| xdebug.cli_color = 1 | |
| xdebug.collect_assignments = Off | |
| xdebug.collect_includes = On | |
| xdebug.collect_params = 0 | |
| xdebug.collect_return = Off | |
| xdebug.collect_vars = Off | |
| xdebug.coverage_enable = On | |
| xdebug.default_enable = On | |
| xdebug.dump_globals = On |