Compare commits
58
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4536b6505c
|
||
|
|
8453c38f41
|
||
|
|
1957df3bbd
|
||
|
|
d196c161df
|
||
|
|
44b5a0b36b
|
||
|
|
5ebf496096
|
||
|
|
7a63c87b03
|
||
|
|
6cc35f07eb
|
||
|
|
89423ecf84
|
||
|
|
c79c421b89
|
||
|
|
8a8d407bcc
|
||
|
|
045df94c29
|
||
|
|
0c667795a7
|
||
|
|
3517303d37
|
||
|
|
89184cd851
|
||
|
|
29a9dee1cb
|
||
|
|
a62d84e20a
|
||
|
|
7a892fad4e
|
||
|
|
d60d211765
|
||
|
|
d58c995230
|
||
|
|
9c143bc8d6
|
||
|
|
0d476c8a8b
|
||
|
|
31341fb4ce
|
||
|
|
39d9f9b312
|
||
|
|
8a6e733316
|
||
|
|
9f25b23e2e
|
||
|
|
6a32dd5ee9
|
||
|
|
b93ddd9dbd
|
||
|
|
7e7892df7a
|
||
|
|
aff9e534c4
|
||
|
|
5f6269204b
|
||
|
|
b44b689caf
|
||
|
|
55df8a9c31
|
||
|
|
da69cb4ad0
|
||
|
|
139d543e4f
|
||
|
|
744cc7d7dd
|
||
|
|
8f1fadc74a
|
||
|
|
e7527a1def
|
||
|
|
0d248ead04
|
||
|
|
3bd07472b2
|
||
|
|
32b1c2748a
|
||
|
|
fc6cac8368
|
||
|
|
eefdc88a47 | ||
|
|
f2e8ca790c
|
||
|
|
32cd4d896d
|
||
|
|
67c450860a
|
||
|
|
f1d9cf1e3d
|
||
|
|
ab1490f472
|
||
|
|
6014134396
|
||
|
|
6713665a61
|
||
|
|
315cf4dd9f
|
||
|
|
2f86b3c16f
|
||
|
|
55c63be9e2
|
||
|
|
5c8ffc2630
|
||
|
|
c7a21c7a69
|
||
|
|
252b0f1792
|
||
|
|
57246ea76d
|
||
|
|
c9d23f829d
|
-61
@@ -1,61 +0,0 @@
|
|||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: CI build
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: restore-cache
|
|
||||||
image: drillster/drone-volume-cache
|
|
||||||
volumes:
|
|
||||||
- name: cache
|
|
||||||
path: /cache
|
|
||||||
settings:
|
|
||||||
restore: true
|
|
||||||
mount:
|
|
||||||
- ./vendor/cache
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
- name: rspec
|
|
||||||
image: gitea.kosmos.org/kosmos/akkounts-ci:0.9.1
|
|
||||||
environment:
|
|
||||||
RAILS_ENV: test
|
|
||||||
REDIS_URL: redis://redis:6379/0
|
|
||||||
RS_REDIS_URL: redis://redis:6379/1
|
|
||||||
commands:
|
|
||||||
- bundle config unset deployment
|
|
||||||
- bundle config set cache_all 'true'
|
|
||||||
- bundle config set cache_path 'vendor/cache'
|
|
||||||
- bundle config set with 'development test'
|
|
||||||
- bundle install --jobs=3 --retry=3
|
|
||||||
- bundle exec rails db:create
|
|
||||||
- bundle exec rails db:migrate
|
|
||||||
- yarn install
|
|
||||||
- rake css:build
|
|
||||||
- bundle exec rspec
|
|
||||||
- name: rebuild-cache
|
|
||||||
image: drillster/drone-volume-cache
|
|
||||||
volumes:
|
|
||||||
- name: cache
|
|
||||||
path: /cache
|
|
||||||
settings:
|
|
||||||
rebuild: true
|
|
||||||
mount:
|
|
||||||
- ./vendor/cache
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
|
|
||||||
services:
|
|
||||||
- name: redis
|
|
||||||
image: redis
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
- name: cache
|
|
||||||
host:
|
|
||||||
path: /var/lib/drone/tmp
|
|
||||||
---
|
|
||||||
kind: signature
|
|
||||||
hmac: f9a8cf97f6596625721365f6238f6f298aa5a7a4de10c3fb61c57202ae9d1ee1
|
|
||||||
|
|
||||||
...
|
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
name: Test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: gitea.kosmos.org/kosmos/akkounts-ci:0.11.1
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
options: >-
|
||||||
|
--health-cmd "redis-cli ping"
|
||||||
|
--health-interval 10s
|
||||||
|
--health-timeout 5s
|
||||||
|
--health-retries 5
|
||||||
|
env:
|
||||||
|
RAILS_ENV: test
|
||||||
|
REDIS_URL: redis://redis:6379/0
|
||||||
|
RS_REDIS_URL: redis://redis:6379/1
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Restore bundle cache
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: vendor/bundle
|
||||||
|
key: ${{ runner.os }}-ruby-3.3.12-${{ hashFiles('Gemfile.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-ruby-3.3.12-
|
||||||
|
|
||||||
|
- name: Install Ruby dependencies
|
||||||
|
run: |
|
||||||
|
bundle config unset deployment
|
||||||
|
bundle config set cache_all 'true'
|
||||||
|
bundle config set cache_path 'vendor/cache'
|
||||||
|
bundle config set path 'vendor/bundle'
|
||||||
|
bundle config set with 'development test'
|
||||||
|
bundle install --jobs=3 --retry=3
|
||||||
|
|
||||||
|
- name: Prepare database
|
||||||
|
run: |
|
||||||
|
bundle exec rails db:create
|
||||||
|
bundle exec rails db:migrate
|
||||||
|
|
||||||
|
- name: Install JS dependencies
|
||||||
|
run: bun install
|
||||||
|
|
||||||
|
- name: Build CSS
|
||||||
|
run: |
|
||||||
|
bundle exec rake css:build
|
||||||
|
test -s app/assets/builds/application.css
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: bundle exec rspec
|
||||||
@@ -9,3 +9,5 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Release Drafter
|
- name: Release Drafter
|
||||||
uses: https://github.com/raucao/gitea-release-drafter@dev
|
uses: https://github.com/raucao/gitea-release-drafter@dev
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -34,10 +34,6 @@
|
|||||||
/public/packs
|
/public/packs
|
||||||
/public/packs-test
|
/public/packs-test
|
||||||
/node_modules
|
/node_modules
|
||||||
/yarn-error.log
|
|
||||||
yarn-debug.log*
|
|
||||||
.yarn-integrity
|
|
||||||
bun.lock
|
|
||||||
|
|
||||||
# Ignore local dotenv config file
|
# Ignore local dotenv config file
|
||||||
.env
|
.env
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
3.3.0
|
3.3.12
|
||||||
|
|||||||
@@ -0,0 +1,73 @@
|
|||||||
|
# AGENTS.md
|
||||||
|
|
||||||
|
Akkounts is a Rails 8 monolith for managing Kosmos/LDAP user accounts.
|
||||||
|
It authenticates against an LDAP directory via Devise and integrates with
|
||||||
|
ejabberd, Discourse, Mastodon, remoteStorage, Nostr, LNDHub, and BTCPay.
|
||||||
|
|
||||||
|
## Development environment
|
||||||
|
|
||||||
|
Development runs in Docker Compose — run all commands against the `web` container.
|
||||||
|
Start services: `docker compose up` (web, ldap, redis, minio, liquor-cabinet, strfry).
|
||||||
|
The `web` service runs `bin/dev` (foreman: Puma + Tailwind CSS watcher) and embeds
|
||||||
|
Solid Queue workers (`SOLID_QUEUE_IN_PUMA=true`).
|
||||||
|
|
||||||
|
First-time LDAP setup (after creating the 389ds backend once):
|
||||||
|
`docker compose exec ldap dsconf localhost backend create --suffix="dc=kosmos,dc=org" --be_name="dev"`
|
||||||
|
then `docker compose run web bin/rails ldap:setup`.
|
||||||
|
|
||||||
|
## Common commands (prefix with `docker compose exec web`)
|
||||||
|
|
||||||
|
- `bin/rspec` — run the test suite (CI runs `bundle exec rspec`)
|
||||||
|
- `bin/rails db:prepare` — create/migrate DB (also `db:setup`, `db:migrate`)
|
||||||
|
- `bin/rails ldap:setup` — reset LDAP dir and seed dev entries
|
||||||
|
- `bin/rails css:build` — build Tailwind CSS (auto-watched in dev)
|
||||||
|
- `bin/rails lndhub:generate_wallets`, `invitations:generate_for_all_users[N]`
|
||||||
|
- `bin/jobs` — Solid Queue CLI
|
||||||
|
|
||||||
|
Tests use the test env explicitly: `docker compose exec -e RAILS_ENV=test web bin/rspec`.
|
||||||
|
There is no enforced linter — a `bin/rubocop` binstub exists but no `.rubocop.yml`
|
||||||
|
(rubocop is a transitive gem, not in the Gemfile); CI does not lint.
|
||||||
|
|
||||||
|
## Stack & conventions
|
||||||
|
|
||||||
|
- **Assets/views:** ERB + ViewComponent (`app/components/`), Tailwind built via Bun +
|
||||||
|
importmap (`config/importmap.rb`); pin JS deps with `bin/importmap pin <pkg> --download`.
|
||||||
|
- **Auth:** Devise + `devise_ldap_authenticatable`; `authentication_keys = [:cn]`,
|
||||||
|
custom SSHA512 password builder, admin bind. Admin-only mounts (`/jobs` MissionControl,
|
||||||
|
`/flipper` Flipper UI) are gated by `authenticate :user, ->(u) { u.is_admin? }`.
|
||||||
|
- **Services:** `app/services/` uses `ApplicationService.call(**args)` with namespaced
|
||||||
|
`*ManagerService` bases (e.g. `UserManagerService`) and verb-named operations
|
||||||
|
(`UserManager::CreateAccount`, `NostrManager::PublishEvent`, `BtcpayManager::*`).
|
||||||
|
- **Models:** `User` is central; `Setting` uses rails-settings-cached with one concern per
|
||||||
|
service in `app/models/concerns/settings/`. LNDHub models connect to a separate DB
|
||||||
|
(`LndhubBase` `establish_connection :lndhub`). LDAP is accessed via `LdapService`/
|
||||||
|
`LdapManagerService`, not ActiveRecord.
|
||||||
|
- **Jobs:** `app/jobs/` inherit `ApplicationJob < ActiveJob::Base`; backend is **Solid Queue**
|
||||||
|
(`config.active_job.queue_adapter = :solid_queue`, separate `queue` DB in prod).
|
||||||
|
`config/recurring.yml` has no active scheduled jobs. Ignore `config/sidekiq.yml` — it's
|
||||||
|
stale (sidekiq is not in the Gemfile; the README mention is outdated).
|
||||||
|
- **Config:** env-var driven (`.env.example`/`.env.development`/`.env.test`); `SERVICES`
|
||||||
|
constant is loaded from `config/services.yml` in `config/initializers/service_details.rb`.
|
||||||
|
Custom LDAP schema attributes are applied from `schemas/ldap/*.ldif` by `lib/tasks/ldap.rake`.
|
||||||
|
|
||||||
|
## Testing conventions (`spec/`)
|
||||||
|
|
||||||
|
`spec/rails_helper.rb` includes FactoryBot, Devise `ControllerHelpers` (controller specs),
|
||||||
|
Warden `Test::Helpers`, DatabaseCleaner (transactional fixtures **off**), ViewComponent
|
||||||
|
`TestHelpers` + Capybara matchers, and `ActiveJob::TestHelper` for `type: :job`.
|
||||||
|
|
||||||
|
- **Feature specs** (`spec/features/`, `type: :feature`): Capybara **rack-test** driver (no JS).
|
||||||
|
Log in with Warden: `login_as user, scope: :user`; stub admin with
|
||||||
|
`allow(Devise::LDAP::Adapter).to receive(:get_ldap_param).with(user.cn, :admin).and_return(["true"])`.
|
||||||
|
- **Services** (`spec/services/`) are tagged `type: :model`; exercise `#call`/`service.send(:private)`
|
||||||
|
and assert on DB rows / `enqueued_jobs`.
|
||||||
|
- **Request/component/mailer/job/model/helper** specs in matching `spec/` subdirs.
|
||||||
|
Fixtures live in `spec/fixtures/`; factories in `spec/factories/`.
|
||||||
|
|
||||||
|
## Notes & gotchas
|
||||||
|
|
||||||
|
- Generators (`config/application.rb`): ERB templates, RSpec, no stylesheets, factory_bot
|
||||||
|
with `_factory` suffix dir `spec/factories`.
|
||||||
|
- `gitno/` and `extras/strfry/` are scratch/infra (Deno Nostr relay policies) — not app code; ignore.
|
||||||
|
- Don't add code comments unless asked (matches repo style); `frozen_string_literal` is inconsistent.
|
||||||
|
- Default dev login: username `admin` / password `admin is admin`.
|
||||||
+6
-7
@@ -1,22 +1,21 @@
|
|||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
FROM ruby:3.3.4
|
FROM ruby:3.3.12
|
||||||
|
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
RUN apt-get update -qq && apt-get install -y --no-install-recommends curl \
|
RUN apt-get update -qq && apt-get install -y --no-install-recommends curl unzip \
|
||||||
ldap-utils tini libvips
|
ldap-utils tini libvips
|
||||||
|
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
|
RUN curl -fsSL https://bun.sh/install | bash -s -- bun-v1.3.14
|
||||||
RUN apt-get update && apt-get install -y nodejs
|
ENV PATH="/root/.bun/bin:$PATH"
|
||||||
|
|
||||||
WORKDIR /akkounts
|
WORKDIR /akkounts
|
||||||
|
|
||||||
COPY ["Gemfile", "Gemfile.lock", "package.json", "./"]
|
COPY ["Gemfile", "Gemfile.lock", "package.json", "bun.lock", "./"]
|
||||||
|
|
||||||
RUN bundle install
|
RUN bundle install
|
||||||
RUN gem install foreman
|
RUN gem install foreman
|
||||||
RUN npm install -g yarn
|
RUN bun install
|
||||||
RUN yarn install
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ source 'https://rubygems.org'
|
|||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||||
gem 'rails', '~> 8.0'
|
gem 'rails', '~> 8.1'
|
||||||
# Use Puma as the app server
|
# Use Puma as the app server
|
||||||
gem 'puma', '~> 6.6'
|
gem 'puma', '~> 8.0'
|
||||||
# View components
|
# View components
|
||||||
gem "view_component"
|
gem "view_component"
|
||||||
# Asset bundler
|
# Asset bundler
|
||||||
@@ -18,7 +18,7 @@ gem "turbo-rails"
|
|||||||
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
||||||
gem "stimulus-rails"
|
gem "stimulus-rails"
|
||||||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
||||||
gem 'jbuilder', '~> 2.7'
|
gem 'jbuilder', '~> 2.15'
|
||||||
# Use Active Model has_secure_password
|
# Use Active Model has_secure_password
|
||||||
gem 'bcrypt', '~> 3.1'
|
gem 'bcrypt', '~> 3.1'
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ gem 'dotenv-rails'
|
|||||||
|
|
||||||
# Authentication
|
# Authentication
|
||||||
gem 'warden'
|
gem 'warden'
|
||||||
gem 'devise', '~> 4.9.0'
|
gem 'devise', '~> 5.0'
|
||||||
gem 'devise_ldap_authenticatable'
|
gem 'devise_ldap_authenticatable'
|
||||||
gem 'net-ldap'
|
gem 'net-ldap'
|
||||||
|
|
||||||
@@ -42,6 +42,7 @@ gem 'flipper-active_record'
|
|||||||
gem 'flipper-ui'
|
gem 'flipper-ui'
|
||||||
gem 'gpgme', '~> 2.0.24'
|
gem 'gpgme', '~> 2.0.24'
|
||||||
gem 'zbase32', '~> 0.1.1'
|
gem 'zbase32', '~> 0.1.1'
|
||||||
|
gem 'kramdown'
|
||||||
|
|
||||||
# HTTP requests
|
# HTTP requests
|
||||||
gem 'faraday'
|
gem 'faraday'
|
||||||
@@ -72,7 +73,7 @@ end
|
|||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
||||||
gem 'web-console', '~> 4.2'
|
gem 'web-console', '~> 4.3'
|
||||||
gem 'listen', '~> 3.2'
|
gem 'listen', '~> 3.2'
|
||||||
gem 'letter_opener'
|
gem 'letter_opener'
|
||||||
gem 'letter_opener_web'
|
gem 'letter_opener_web'
|
||||||
|
|||||||
+150
-140
@@ -3,29 +3,31 @@ GEM
|
|||||||
specs:
|
specs:
|
||||||
aasm (5.5.0)
|
aasm (5.5.0)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
actioncable (8.0.2)
|
action_text-trix (2.1.19)
|
||||||
actionpack (= 8.0.2)
|
railties
|
||||||
activesupport (= 8.0.2)
|
actioncable (8.1.3.1)
|
||||||
|
actionpack (= 8.1.3.1)
|
||||||
|
activesupport (= 8.1.3.1)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
zeitwerk (~> 2.6)
|
zeitwerk (~> 2.6)
|
||||||
actionmailbox (8.0.2)
|
actionmailbox (8.1.3.1)
|
||||||
actionpack (= 8.0.2)
|
actionpack (= 8.1.3.1)
|
||||||
activejob (= 8.0.2)
|
activejob (= 8.1.3.1)
|
||||||
activerecord (= 8.0.2)
|
activerecord (= 8.1.3.1)
|
||||||
activestorage (= 8.0.2)
|
activestorage (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
mail (>= 2.8.0)
|
mail (>= 2.8.0)
|
||||||
actionmailer (8.0.2)
|
actionmailer (8.1.3.1)
|
||||||
actionpack (= 8.0.2)
|
actionpack (= 8.1.3.1)
|
||||||
actionview (= 8.0.2)
|
actionview (= 8.1.3.1)
|
||||||
activejob (= 8.0.2)
|
activejob (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
mail (>= 2.8.0)
|
mail (>= 2.8.0)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
actionpack (8.0.2)
|
actionpack (8.1.3.1)
|
||||||
actionview (= 8.0.2)
|
actionview (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
rack (>= 2.2.4)
|
rack (>= 2.2.4)
|
||||||
rack-session (>= 1.0.1)
|
rack-session (>= 1.0.1)
|
||||||
@@ -33,42 +35,43 @@ GEM
|
|||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.6)
|
||||||
useragent (~> 0.16)
|
useragent (~> 0.16)
|
||||||
actiontext (8.0.2)
|
actiontext (8.1.3.1)
|
||||||
actionpack (= 8.0.2)
|
action_text-trix (~> 2.1.15)
|
||||||
activerecord (= 8.0.2)
|
actionpack (= 8.1.3.1)
|
||||||
activestorage (= 8.0.2)
|
activerecord (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activestorage (= 8.1.3.1)
|
||||||
|
activesupport (= 8.1.3.1)
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (8.0.2)
|
actionview (8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.11)
|
erubi (~> 1.11)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.6)
|
||||||
activejob (8.0.2)
|
activejob (8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (8.0.2)
|
activemodel (8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
activerecord (8.0.2)
|
activerecord (8.1.3.1)
|
||||||
activemodel (= 8.0.2)
|
activemodel (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
timeout (>= 0.4.0)
|
timeout (>= 0.4.0)
|
||||||
activestorage (8.0.2)
|
activestorage (8.1.3.1)
|
||||||
actionpack (= 8.0.2)
|
actionpack (= 8.1.3.1)
|
||||||
activejob (= 8.0.2)
|
activejob (= 8.1.3.1)
|
||||||
activerecord (= 8.0.2)
|
activerecord (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
activesupport (8.0.2)
|
activesupport (8.1.3.1)
|
||||||
base64
|
base64
|
||||||
benchmark (>= 0.3)
|
|
||||||
bigdecimal
|
bigdecimal
|
||||||
concurrent-ruby (~> 1.0, >= 1.3.1)
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
||||||
connection_pool (>= 2.2.5)
|
connection_pool (>= 2.2.5)
|
||||||
drb
|
drb
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
|
json
|
||||||
logger (>= 1.4.2)
|
logger (>= 1.4.2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
securerandom (>= 0.3)
|
securerandom (>= 0.3)
|
||||||
@@ -96,12 +99,12 @@ GEM
|
|||||||
aws-sigv4 (1.11.0)
|
aws-sigv4 (1.11.0)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
backport (1.2.0)
|
backport (1.2.0)
|
||||||
base64 (0.2.0)
|
base64 (0.3.0)
|
||||||
bcrypt (3.1.20)
|
bcrypt (3.1.22)
|
||||||
bech32 (1.5.0)
|
bech32 (1.5.0)
|
||||||
thor (>= 1.1.0)
|
thor (>= 1.1.0)
|
||||||
benchmark (0.4.0)
|
benchmark (0.5.0)
|
||||||
bigdecimal (3.1.9)
|
bigdecimal (4.1.2)
|
||||||
bindex (0.8.1)
|
bindex (0.8.1)
|
||||||
bip-schnorr (0.7.0)
|
bip-schnorr (0.7.0)
|
||||||
ecdsa_ext (~> 0.5.0)
|
ecdsa_ext (~> 0.5.0)
|
||||||
@@ -118,12 +121,12 @@ GEM
|
|||||||
childprocess (5.1.0)
|
childprocess (5.1.0)
|
||||||
logger (~> 1.5)
|
logger (~> 1.5)
|
||||||
chunky_png (1.4.0)
|
chunky_png (1.4.0)
|
||||||
concurrent-ruby (1.3.4)
|
concurrent-ruby (1.3.8)
|
||||||
connection_pool (2.5.2)
|
connection_pool (3.0.2)
|
||||||
crack (1.0.0)
|
crack (1.0.0)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rexml
|
rexml
|
||||||
crass (1.0.6)
|
crass (1.0.7)
|
||||||
cssbundling-rails (1.4.3)
|
cssbundling-rails (1.4.3)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
database_cleaner (2.1.0)
|
database_cleaner (2.1.0)
|
||||||
@@ -132,17 +135,17 @@ GEM
|
|||||||
activerecord (>= 5.a)
|
activerecord (>= 5.a)
|
||||||
database_cleaner-core (~> 2.0.0)
|
database_cleaner-core (~> 2.0.0)
|
||||||
database_cleaner-core (2.0.1)
|
database_cleaner-core (2.0.1)
|
||||||
date (3.4.1)
|
date (3.5.1)
|
||||||
devise (4.9.4)
|
devise (5.0.4)
|
||||||
bcrypt (~> 3.0)
|
bcrypt (~> 3.0)
|
||||||
orm_adapter (~> 0.1)
|
orm_adapter (~> 0.1)
|
||||||
railties (>= 4.1.0)
|
railties (>= 7.0)
|
||||||
responders
|
responders
|
||||||
warden (~> 1.2.3)
|
warden (~> 1.2.3)
|
||||||
devise_ldap_authenticatable (0.8.7)
|
devise_ldap_authenticatable (0.8.7)
|
||||||
devise (>= 3.4.1)
|
devise (>= 3.4.1)
|
||||||
net-ldap (>= 0.16.0)
|
net-ldap (>= 0.16.0)
|
||||||
diff-lcs (1.6.1)
|
diff-lcs (1.6.2)
|
||||||
discourse_api (2.0.1)
|
discourse_api (2.0.1)
|
||||||
faraday (~> 2.7)
|
faraday (~> 2.7)
|
||||||
faraday-follow_redirects
|
faraday-follow_redirects
|
||||||
@@ -154,12 +157,13 @@ GEM
|
|||||||
railties (>= 6.1)
|
railties (>= 6.1)
|
||||||
down (5.4.2)
|
down (5.4.2)
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
drb (2.2.1)
|
drb (2.2.3)
|
||||||
ecdsa (1.2.0)
|
ecdsa (1.2.0)
|
||||||
ecdsa_ext (0.5.1)
|
ecdsa_ext (0.5.1)
|
||||||
ecdsa (~> 1.2.0)
|
ecdsa (~> 1.2.0)
|
||||||
|
erb (6.0.7)
|
||||||
erubi (1.13.1)
|
erubi (1.13.1)
|
||||||
et-orbi (1.2.11)
|
et-orbi (1.4.1)
|
||||||
tzinfo
|
tzinfo
|
||||||
event_emitter (0.2.6)
|
event_emitter (0.2.6)
|
||||||
eventmachine (1.2.7)
|
eventmachine (1.2.7)
|
||||||
@@ -196,34 +200,35 @@ GEM
|
|||||||
rack-protection (>= 1.5.3, < 5.0.0)
|
rack-protection (>= 1.5.3, < 5.0.0)
|
||||||
rack-session (>= 1.0.2, < 3.0.0)
|
rack-session (>= 1.0.2, < 3.0.0)
|
||||||
sanitize (< 8)
|
sanitize (< 8)
|
||||||
fugit (1.11.1)
|
fugit (1.13.0)
|
||||||
et-orbi (~> 1, >= 1.2.11)
|
et-orbi (~> 1.4)
|
||||||
raabro (~> 1.4)
|
raabro (~> 1.4)
|
||||||
globalid (1.2.1)
|
globalid (1.4.0)
|
||||||
activesupport (>= 6.1)
|
activesupport (>= 6.1)
|
||||||
gpgme (2.0.24)
|
gpgme (2.0.24)
|
||||||
mini_portile2 (~> 2.7)
|
mini_portile2 (~> 2.7)
|
||||||
hashdiff (1.1.2)
|
hashdiff (1.1.2)
|
||||||
i18n (1.14.7)
|
i18n (1.15.2)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
image_processing (1.12.2)
|
image_processing (1.12.2)
|
||||||
mini_magick (>= 4.9.5, < 5)
|
mini_magick (>= 4.9.5, < 5)
|
||||||
ruby-vips (>= 2.0.17, < 3)
|
ruby-vips (>= 2.0.17, < 3)
|
||||||
importmap-rails (2.1.0)
|
importmap-rails (2.2.3)
|
||||||
actionpack (>= 6.0.0)
|
actionpack (>= 6.0.0)
|
||||||
activesupport (>= 6.0.0)
|
activesupport (>= 6.0.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
io-console (0.8.0)
|
io-console (0.9.2)
|
||||||
irb (1.15.2)
|
irb (1.18.0)
|
||||||
pp (>= 0.6.0)
|
pp (>= 0.6.0)
|
||||||
|
prism (>= 1.3.0)
|
||||||
rdoc (>= 4.0.0)
|
rdoc (>= 4.0.0)
|
||||||
reline (>= 0.4.2)
|
reline (>= 0.4.2)
|
||||||
jaro_winkler (1.6.0)
|
jaro_winkler (1.6.0)
|
||||||
jbuilder (2.13.0)
|
jbuilder (2.15.1)
|
||||||
actionview (>= 5.0.0)
|
actionview (>= 7.0.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 7.0.0)
|
||||||
jmespath (1.6.2)
|
jmespath (1.6.2)
|
||||||
json (2.11.3)
|
json (2.21.2)
|
||||||
kramdown (2.5.1)
|
kramdown (2.5.1)
|
||||||
rexml (>= 3.3.9)
|
rexml (>= 3.3.9)
|
||||||
kramdown-parser-gfm (1.1.0)
|
kramdown-parser-gfm (1.1.0)
|
||||||
@@ -247,10 +252,11 @@ GEM
|
|||||||
lnurl (1.1.1)
|
lnurl (1.1.1)
|
||||||
bech32 (~> 1.1)
|
bech32 (~> 1.1)
|
||||||
logger (1.7.0)
|
logger (1.7.0)
|
||||||
loofah (2.24.0)
|
loofah (2.25.2)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.12.0)
|
nokogiri (>= 1.12.0)
|
||||||
mail (2.8.1)
|
mail (2.9.1)
|
||||||
|
logger
|
||||||
mini_mime (>= 0.1.1)
|
mini_mime (>= 0.1.1)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
@@ -259,14 +265,15 @@ GEM
|
|||||||
faraday (~> 2.9.0)
|
faraday (~> 2.9.0)
|
||||||
faraday-follow_redirects (= 0.3.0)
|
faraday-follow_redirects (= 0.3.0)
|
||||||
nokogiri (~> 1.16.0)
|
nokogiri (~> 1.16.0)
|
||||||
marcel (1.0.4)
|
marcel (1.2.1)
|
||||||
matrix (0.4.2)
|
matrix (0.4.2)
|
||||||
method_source (1.1.0)
|
|
||||||
mini_magick (4.13.2)
|
mini_magick (4.13.2)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
mini_portile2 (2.8.8)
|
mini_portile2 (2.8.9)
|
||||||
minitest (5.25.5)
|
minitest (6.0.6)
|
||||||
mission_control-jobs (1.0.2)
|
drb (~> 2.0)
|
||||||
|
prism (~> 1.5)
|
||||||
|
mission_control-jobs (1.1.0)
|
||||||
actioncable (>= 7.1)
|
actioncable (>= 7.1)
|
||||||
actionpack (>= 7.1)
|
actionpack (>= 7.1)
|
||||||
activejob (>= 7.1)
|
activejob (>= 7.1)
|
||||||
@@ -279,7 +286,7 @@ GEM
|
|||||||
multipart-post (2.4.1)
|
multipart-post (2.4.1)
|
||||||
net-http (0.6.0)
|
net-http (0.6.0)
|
||||||
uri
|
uri
|
||||||
net-imap (0.5.7)
|
net-imap (0.6.6)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-ldap (0.19.0)
|
net-ldap (0.19.0)
|
||||||
@@ -289,7 +296,7 @@ GEM
|
|||||||
timeout
|
timeout
|
||||||
net-smtp (0.5.1)
|
net-smtp (0.5.1)
|
||||||
net-protocol
|
net-protocol
|
||||||
nio4r (2.7.4)
|
nio4r (2.7.5)
|
||||||
nokogiri (1.16.8)
|
nokogiri (1.16.8)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
@@ -313,24 +320,23 @@ GEM
|
|||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
racc
|
racc
|
||||||
pg (1.5.9)
|
pg (1.5.9)
|
||||||
pp (0.6.2)
|
pp (0.6.4)
|
||||||
prettyprint
|
prettyprint
|
||||||
prettyprint (0.2.0)
|
prettyprint (0.2.0)
|
||||||
prism (1.4.0)
|
prism (1.9.0)
|
||||||
propshaft (1.1.0)
|
propshaft (1.3.2)
|
||||||
actionpack (>= 7.0.0)
|
actionpack (>= 7.0.0)
|
||||||
activesupport (>= 7.0.0)
|
activesupport (>= 7.0.0)
|
||||||
rack
|
rack
|
||||||
railties (>= 7.0.0)
|
psych (5.4.0)
|
||||||
psych (5.2.3)
|
|
||||||
date
|
date
|
||||||
stringio
|
stringio
|
||||||
public_suffix (6.0.1)
|
public_suffix (6.0.1)
|
||||||
puma (6.6.0)
|
puma (8.0.2)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
raabro (1.4.0)
|
raabro (1.5.0)
|
||||||
racc (1.8.1)
|
racc (1.8.1)
|
||||||
rack (2.2.13)
|
rack (2.2.23)
|
||||||
rack-protection (3.2.0)
|
rack-protection (3.2.0)
|
||||||
base64 (>= 0.1.0)
|
base64 (>= 0.1.0)
|
||||||
rack (~> 2.2, >= 2.2.4)
|
rack (~> 2.2, >= 2.2.4)
|
||||||
@@ -341,61 +347,64 @@ GEM
|
|||||||
rackup (1.0.1)
|
rackup (1.0.1)
|
||||||
rack (< 3)
|
rack (< 3)
|
||||||
webrick
|
webrick
|
||||||
rails (8.0.2)
|
rails (8.1.3.1)
|
||||||
actioncable (= 8.0.2)
|
actioncable (= 8.1.3.1)
|
||||||
actionmailbox (= 8.0.2)
|
actionmailbox (= 8.1.3.1)
|
||||||
actionmailer (= 8.0.2)
|
actionmailer (= 8.1.3.1)
|
||||||
actionpack (= 8.0.2)
|
actionpack (= 8.1.3.1)
|
||||||
actiontext (= 8.0.2)
|
actiontext (= 8.1.3.1)
|
||||||
actionview (= 8.0.2)
|
actionview (= 8.1.3.1)
|
||||||
activejob (= 8.0.2)
|
activejob (= 8.1.3.1)
|
||||||
activemodel (= 8.0.2)
|
activemodel (= 8.1.3.1)
|
||||||
activerecord (= 8.0.2)
|
activerecord (= 8.1.3.1)
|
||||||
activestorage (= 8.0.2)
|
activestorage (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 8.0.2)
|
railties (= 8.1.3.1)
|
||||||
rails-controller-testing (1.0.5)
|
rails-controller-testing (1.0.5)
|
||||||
actionpack (>= 5.0.1.rc1)
|
actionpack (>= 5.0.1.rc1)
|
||||||
actionview (>= 5.0.1.rc1)
|
actionview (>= 5.0.1.rc1)
|
||||||
activesupport (>= 5.0.1.rc1)
|
activesupport (>= 5.0.1.rc1)
|
||||||
rails-dom-testing (2.2.0)
|
rails-dom-testing (2.3.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
minitest
|
minitest
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-html-sanitizer (1.6.2)
|
rails-html-sanitizer (1.7.1)
|
||||||
loofah (~> 2.21)
|
loofah (~> 2.25, >= 2.25.2)
|
||||||
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
||||||
rails-settings-cached (2.8.3)
|
rails-settings-cached (2.8.3)
|
||||||
activerecord (>= 5.0.0)
|
activerecord (>= 5.0.0)
|
||||||
railties (>= 5.0.0)
|
railties (>= 5.0.0)
|
||||||
railties (8.0.2)
|
railties (8.1.3.1)
|
||||||
actionpack (= 8.0.2)
|
actionpack (= 8.1.3.1)
|
||||||
activesupport (= 8.0.2)
|
activesupport (= 8.1.3.1)
|
||||||
irb (~> 1.13)
|
irb (~> 1.13)
|
||||||
rackup (>= 1.0.0)
|
rackup (>= 1.0.0)
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0, >= 1.2.2)
|
thor (~> 1.0, >= 1.2.2)
|
||||||
|
tsort (>= 0.2)
|
||||||
zeitwerk (~> 2.6)
|
zeitwerk (~> 2.6)
|
||||||
rainbow (3.1.1)
|
rainbow (3.1.1)
|
||||||
rake (13.2.1)
|
rake (13.4.2)
|
||||||
rb-fsevent (0.11.2)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.11.1)
|
rb-inotify (0.11.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
rbs (3.9.2)
|
rbs (3.9.2)
|
||||||
logger
|
logger
|
||||||
rdoc (6.13.1)
|
rdoc (7.2.0)
|
||||||
|
erb
|
||||||
psych (>= 4.0.0)
|
psych (>= 4.0.0)
|
||||||
|
tsort
|
||||||
redis (5.4.0)
|
redis (5.4.0)
|
||||||
redis-client (>= 0.22.0)
|
redis-client (>= 0.22.0)
|
||||||
redis-client (0.24.0)
|
redis-client (0.24.0)
|
||||||
connection_pool
|
connection_pool
|
||||||
regexp_parser (2.10.0)
|
regexp_parser (2.10.0)
|
||||||
reline (0.6.1)
|
reline (0.7.0)
|
||||||
io-console (~> 0.5)
|
io-console (~> 0.5)
|
||||||
responders (3.1.1)
|
responders (3.2.0)
|
||||||
actionpack (>= 5.2)
|
actionpack (>= 7.0)
|
||||||
railties (>= 5.2)
|
railties (>= 7.0)
|
||||||
reverse_markdown (3.0.0)
|
reverse_markdown (3.0.0)
|
||||||
nokogiri
|
nokogiri
|
||||||
rexml (3.4.1)
|
rexml (3.4.1)
|
||||||
@@ -403,23 +412,23 @@ GEM
|
|||||||
chunky_png (~> 1.0)
|
chunky_png (~> 1.0)
|
||||||
rqrcode_core (~> 1.0)
|
rqrcode_core (~> 1.0)
|
||||||
rqrcode_core (1.2.0)
|
rqrcode_core (1.2.0)
|
||||||
rspec-core (3.13.3)
|
rspec-core (3.13.6)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-expectations (3.13.3)
|
rspec-expectations (3.13.5)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-mocks (3.13.2)
|
rspec-mocks (3.13.8)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-rails (7.1.1)
|
rspec-rails (8.0.4)
|
||||||
actionpack (>= 7.0)
|
actionpack (>= 7.2)
|
||||||
activesupport (>= 7.0)
|
activesupport (>= 7.2)
|
||||||
railties (>= 7.0)
|
railties (>= 7.2)
|
||||||
rspec-core (~> 3.13)
|
rspec-core (>= 3.13.0, < 5.0.0)
|
||||||
rspec-expectations (~> 3.13)
|
rspec-expectations (>= 3.13.0, < 5.0.0)
|
||||||
rspec-mocks (~> 3.13)
|
rspec-mocks (>= 3.13.0, < 5.0.0)
|
||||||
rspec-support (~> 3.13)
|
rspec-support (>= 3.13.0, < 5.0.0)
|
||||||
rspec-support (3.13.2)
|
rspec-support (3.13.7)
|
||||||
rubocop (1.75.3)
|
rubocop (1.75.3)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (~> 3.17.0.2)
|
language_server-protocol (~> 3.17.0.2)
|
||||||
@@ -467,24 +476,25 @@ GEM
|
|||||||
tilt (~> 2.0)
|
tilt (~> 2.0)
|
||||||
yard (~> 0.9, >= 0.9.24)
|
yard (~> 0.9, >= 0.9.24)
|
||||||
yard-solargraph (~> 0.1)
|
yard-solargraph (~> 0.1)
|
||||||
solid_queue (1.1.5)
|
solid_queue (1.6.0)
|
||||||
activejob (>= 7.1)
|
activejob (>= 7.1)
|
||||||
activerecord (>= 7.1)
|
activerecord (>= 7.1)
|
||||||
concurrent-ruby (>= 1.3.1)
|
concurrent-ruby (>= 1.3.1)
|
||||||
fugit (~> 1.11.0)
|
fugit (~> 1.11)
|
||||||
railties (>= 7.1)
|
railties (>= 7.1)
|
||||||
thor (~> 1.3.1)
|
thor (>= 1.3.1)
|
||||||
sqlite3 (2.6.0)
|
sqlite3 (2.6.0)
|
||||||
mini_portile2 (~> 2.8.0)
|
mini_portile2 (~> 2.8.0)
|
||||||
sqlite3 (2.6.0-arm64-darwin)
|
sqlite3 (2.6.0-arm64-darwin)
|
||||||
sqlite3 (2.6.0-x86_64-linux-gnu)
|
sqlite3 (2.6.0-x86_64-linux-gnu)
|
||||||
stimulus-rails (1.3.4)
|
stimulus-rails (1.3.4)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
stringio (3.1.7)
|
stringio (3.2.0)
|
||||||
thor (1.3.2)
|
thor (1.5.0)
|
||||||
tilt (2.6.0)
|
tilt (2.6.0)
|
||||||
timeout (0.4.3)
|
timeout (0.6.1)
|
||||||
turbo-rails (2.0.13)
|
tsort (0.2.0)
|
||||||
|
turbo-rails (2.0.23)
|
||||||
actionpack (>= 7.1.0)
|
actionpack (>= 7.1.0)
|
||||||
railties (>= 7.1.0)
|
railties (>= 7.1.0)
|
||||||
tzinfo (2.0.6)
|
tzinfo (2.0.6)
|
||||||
@@ -492,25 +502,24 @@ GEM
|
|||||||
unicode-display_width (3.1.4)
|
unicode-display_width (3.1.4)
|
||||||
unicode-emoji (~> 4.0, >= 4.0.4)
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
||||||
unicode-emoji (4.0.4)
|
unicode-emoji (4.0.4)
|
||||||
uri (1.0.3)
|
uri (1.1.1)
|
||||||
useragent (0.16.11)
|
useragent (0.16.11)
|
||||||
view_component (3.22.0)
|
view_component (4.12.0)
|
||||||
activesupport (>= 5.2.0, < 8.1)
|
actionview (>= 7.1.0)
|
||||||
concurrent-ruby (= 1.3.4)
|
activesupport (>= 7.1.0)
|
||||||
method_source (~> 1.0)
|
concurrent-ruby (~> 1)
|
||||||
warden (1.2.9)
|
warden (1.2.9)
|
||||||
rack (>= 2.0.9)
|
rack (>= 2.0.9)
|
||||||
web-console (4.2.1)
|
web-console (4.3.0)
|
||||||
actionview (>= 6.0.0)
|
actionview (>= 8.0.0)
|
||||||
activemodel (>= 6.0.0)
|
|
||||||
bindex (>= 0.4.0)
|
bindex (>= 0.4.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 8.0.0)
|
||||||
webmock (3.25.1)
|
webmock (3.25.1)
|
||||||
addressable (>= 2.8.0)
|
addressable (>= 2.8.0)
|
||||||
crack (>= 0.3.2)
|
crack (>= 0.3.2)
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
hashdiff (>= 0.4.0, < 2.0.0)
|
||||||
webrick (1.9.1)
|
webrick (1.9.2)
|
||||||
websocket-driver (0.7.7)
|
websocket-driver (0.8.2)
|
||||||
base64
|
base64
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
@@ -520,7 +529,7 @@ GEM
|
|||||||
yard-solargraph (0.1.0)
|
yard-solargraph (0.1.0)
|
||||||
yard (~> 0.9)
|
yard (~> 0.9)
|
||||||
zbase32 (0.1.1)
|
zbase32 (0.1.1)
|
||||||
zeitwerk (2.7.2)
|
zeitwerk (2.8.3)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
arm64-darwin-22
|
arm64-darwin-22
|
||||||
@@ -534,7 +543,7 @@ DEPENDENCIES
|
|||||||
capybara
|
capybara
|
||||||
cssbundling-rails
|
cssbundling-rails
|
||||||
database_cleaner
|
database_cleaner
|
||||||
devise (~> 4.9.0)
|
devise (~> 5.0)
|
||||||
devise_ldap_authenticatable
|
devise_ldap_authenticatable
|
||||||
discourse_api
|
discourse_api
|
||||||
dotenv-rails
|
dotenv-rails
|
||||||
@@ -548,7 +557,8 @@ DEPENDENCIES
|
|||||||
gpgme (~> 2.0.24)
|
gpgme (~> 2.0.24)
|
||||||
image_processing (~> 1.12.2)
|
image_processing (~> 1.12.2)
|
||||||
importmap-rails
|
importmap-rails
|
||||||
jbuilder (~> 2.7)
|
jbuilder (~> 2.15)
|
||||||
|
kramdown
|
||||||
letter_opener
|
letter_opener
|
||||||
letter_opener_web
|
letter_opener_web
|
||||||
listen (~> 3.2)
|
listen (~> 3.2)
|
||||||
@@ -560,8 +570,8 @@ DEPENDENCIES
|
|||||||
pagy (~> 6.0, >= 6.0.2)
|
pagy (~> 6.0, >= 6.0.2)
|
||||||
pg (~> 1.5)
|
pg (~> 1.5)
|
||||||
propshaft
|
propshaft
|
||||||
puma (~> 6.6)
|
puma (~> 8.0)
|
||||||
rails (~> 8.0)
|
rails (~> 8.1)
|
||||||
rails-controller-testing
|
rails-controller-testing
|
||||||
rails-settings-cached (~> 2.8.3)
|
rails-settings-cached (~> 2.8.3)
|
||||||
redis (~> 5.4)
|
redis (~> 5.4)
|
||||||
@@ -577,7 +587,7 @@ DEPENDENCIES
|
|||||||
tzinfo-data
|
tzinfo-data
|
||||||
view_component
|
view_component
|
||||||
warden
|
warden
|
||||||
web-console (~> 4.2)
|
web-console (~> 4.3)
|
||||||
webmock
|
webmock
|
||||||
zbase32 (~> 0.1.1)
|
zbase32 (~> 0.1.1)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
web: bin/rails server -b 0.0.0.0 -p 3000
|
web: bin/rails server -b 0.0.0.0 -p 3000
|
||||||
css: yarn build:css --watch
|
css: bun run build:css:tailwind --watch
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[](https://drone.kosmos.org/kosmos/akkounts)
|
[](https://gitea.kosmos.org/kosmos/akkounts/actions)
|
||||||
|
|
||||||
# Akkounts
|
# Akkounts
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@ run web`._
|
|||||||
Installing dependencies:
|
Installing dependencies:
|
||||||
|
|
||||||
bundle install
|
bundle install
|
||||||
yarn install
|
bun install
|
||||||
|
|
||||||
Migrating the local database (after schema changes):
|
Migrating the local database (after schema changes):
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
@import "components/buttons";
|
@import "components/buttons";
|
||||||
@import "components/dashboard_services";
|
@import "components/dashboard_services";
|
||||||
@import "components/forms";
|
@import "components/forms";
|
||||||
@import "components/links";
|
|
||||||
@import "components/notifications";
|
@import "components/notifications";
|
||||||
@import "components/pagination";
|
@import "components/pagination";
|
||||||
|
@import "components/rich_text";
|
||||||
@import "components/tables";
|
@import "components/tables";
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
body {
|
body {
|
||||||
@apply leading-none bg-cover bg-fixed;
|
@apply leading-none bg-cover bg-fixed;
|
||||||
background-image: linear-gradient(35deg, rgba(255,0,255,0.2) 0, rgba(13,79,153,0.8) 100%), url('/img/bg-1.jpg');
|
background-image: linear-gradient(35deg, rgba(255,0,255,0.2) 0, rgba(13,79,153,0.8) 100%), url('/img/bg-1.jpg');
|
||||||
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
body#admin {
|
body#admin {
|
||||||
@@ -32,6 +33,10 @@
|
|||||||
@apply pt-8 sm:pt-12;
|
@apply pt-8 sm:pt-12;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main section h3:not(:first-child) {
|
||||||
|
@apply mt-8;
|
||||||
|
}
|
||||||
|
|
||||||
main section:first-of-type {
|
main section:first-of-type {
|
||||||
@apply pt-0;
|
@apply pt-0;
|
||||||
}
|
}
|
||||||
@@ -55,4 +60,11 @@
|
|||||||
main ul li {
|
main ul li {
|
||||||
@apply leading-6;
|
@apply leading-6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main a:not(nav > *) {
|
||||||
|
@apply text-blue-600;
|
||||||
|
&:hover { @apply underline; }
|
||||||
|
&:visited { @apply text-indigo-600; }
|
||||||
|
&:active { @apply text-red-600; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
@layer components {
|
@layer components {
|
||||||
|
.btn-text-dark { @apply text-black; }
|
||||||
|
.btn-text-dark:hover { @apply text-black no-underline; }
|
||||||
|
.btn-text-dark:visited { @apply text-black; }
|
||||||
|
.btn-text-dark:active { @apply text-black; }
|
||||||
|
.btn-text-light { @apply text-white; }
|
||||||
|
.btn-text-light:hover { @apply text-white no-underline; }
|
||||||
|
.btn-text-light:visited { @apply text-white; }
|
||||||
|
.btn-text-light:active { @apply text-white; }
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
|
@apply btn-text-dark;
|
||||||
@apply inline-block font-semibold rounded-md leading-none cursor-pointer text-center
|
@apply inline-block font-semibold rounded-md leading-none cursor-pointer text-center
|
||||||
transition-colors duration-75 focus:outline-none focus:ring-4;
|
transition-colors duration-75 focus:outline-none focus:ring-4;
|
||||||
}
|
}
|
||||||
@@ -28,17 +38,20 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-blue {
|
.btn-blue {
|
||||||
@apply bg-blue-500 hover:bg-blue-600 text-white
|
@apply btn-text-light;
|
||||||
|
@apply bg-blue-500 hover:bg-blue-600
|
||||||
focus:ring-blue-400 focus:ring-opacity-75;
|
focus:ring-blue-400 focus:ring-opacity-75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-emerald {
|
.btn-emerald {
|
||||||
@apply bg-emerald-500 hover:bg-emerald-600 text-white
|
@apply btn-text-light;
|
||||||
|
@apply bg-emerald-500 hover:bg-emerald-600
|
||||||
focus:ring-emerald-400 focus:ring-opacity-75;
|
focus:ring-emerald-400 focus:ring-opacity-75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-red {
|
.btn-red {
|
||||||
@apply bg-red-600 hover:bg-red-700 text-white
|
@apply btn-text-light;
|
||||||
|
@apply bg-red-600 hover:bg-red-700
|
||||||
focus:ring-red-500 focus:ring-opacity-75;
|
focus:ring-red-500 focus:ring-opacity-75;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
@layer components {
|
|
||||||
.ks-text-link {
|
|
||||||
@apply text-blue-600;
|
|
||||||
&:hover { @apply underline; }
|
|
||||||
&:visited { @apply text-indigo-600; }
|
|
||||||
&:active { @apply text-red-600; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
.pagy-nav .page a, .page.gap {
|
.pagy-nav .page a, .page.gap {
|
||||||
@apply bg-white border-gray-300 text-gray-500 hover:bg-gray-100 relative
|
@apply bg-white border-gray-300 text-gray-500 hover:bg-gray-100 relative
|
||||||
inline-flex items-center border px-4 py-2 text-sm font-medium
|
inline-flex items-center border px-4 py-2 text-sm font-medium
|
||||||
focus:z-20;
|
no-underline focus:z-20;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagy-nav .page.active {
|
.pagy-nav .page.active {
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
@layer base {
|
||||||
|
main {
|
||||||
|
.rich-text {
|
||||||
|
ul {
|
||||||
|
@apply list-disc list-inside;
|
||||||
|
|
||||||
|
li {
|
||||||
|
@apply my-2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
@apply list-decimal list-inside;
|
||||||
|
|
||||||
|
li {
|
||||||
|
@apply my-2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li > ul,
|
||||||
|
li > ol {
|
||||||
|
@apply ps-6 my-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
@apply my-8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
<div class="inline-block text-left" data-controller="modal" data-action="keydown.esc->modal#close">
|
||||||
|
<button class="btn-md btn-outline text-red-600" data-action="click->modal#open" title="Edit">
|
||||||
|
<%= content || "Edit" %>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<%= render ModalComponent.new(show_close_button: false) do %>
|
||||||
|
<%= form_with model: [:admin, @editable_content],
|
||||||
|
html: { autocomplete: "off" } do |form| %>
|
||||||
|
<%= form.hidden_field :redirect_to, value: @redirect_to %>
|
||||||
|
<p class="mb-2">
|
||||||
|
<%= form.label :content, @editable_content.key.capitalize, class: 'font-bold' %>
|
||||||
|
</p>
|
||||||
|
<% if @editable_content.rich_text %>
|
||||||
|
<p>
|
||||||
|
<%= form.textarea :content, class: "md:w-[56rem] md:h-[28rem]" %>
|
||||||
|
</p>
|
||||||
|
<p class="text-right">
|
||||||
|
<%= form.submit "Save", class: "ml-2 btn-md btn-blue" %>
|
||||||
|
</p>
|
||||||
|
<% else %>
|
||||||
|
<p class="">
|
||||||
|
<%= form.text_field :content, class: "w-80" %>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<%= form.submit "Save", class: "btn-md btn-blue w-full" %>
|
||||||
|
</p>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
class EditContentButtonComponent < ViewComponent::Base
|
||||||
|
def initialize(context:, key:, rich_text: false, redirect_to: nil)
|
||||||
|
@editable_content = EditableContent.find_or_create_by(context:, key:, rich_text:)
|
||||||
|
@redirect_to = redirect_to
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<% if @editable_content.has_content? %>
|
||||||
|
<% if @editable_content.rich_text %>
|
||||||
|
<div class="rich-text">
|
||||||
|
<%= helpers.markdown_to_html @editable_content.content %>
|
||||||
|
</div>
|
||||||
|
<% else %>
|
||||||
|
<%= @editable_content.content %>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<%= @default %>
|
||||||
|
<% end %>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
class EditableContentComponent < ViewComponent::Base
|
||||||
|
def initialize(context:, key:, rich_text: false, default: nil)
|
||||||
|
@editable_content = EditableContent.find_or_create_by(context:, key:, rich_text:)
|
||||||
|
@default = default
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<main class="w-full max-w-xl mx-auto pb-12 px-4 sm:px-6 lg:px-8">
|
<main class="w-full max-w-xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
<div class="bg-white rounded-lg shadow px-6 sm:px-12 py-8 sm:py-12">
|
<div class="bg-white rounded-lg shadow px-6 sm:px-12 py-8 sm:py-12">
|
||||||
<%= content %>
|
<%= content %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<main class="w-full max-w-6xl mx-auto pb-12 px-4 md:px-6 lg:px-8">
|
<main class="w-full max-w-6xl mx-auto px-4 md:px-6 lg:px-8">
|
||||||
<div class="md:min-h-[50vh] bg-white rounded-lg shadow px-6 sm:px-12 py-8 sm:py-12">
|
<div class="md:min-h-[50vh] bg-white rounded-lg shadow px-6 sm:px-12 py-8 sm:py-12">
|
||||||
<%= content %>
|
<%= content %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<main class="w-full max-w-6xl mx-auto pb-12 px-4 md:px-6 lg:px-8">
|
<main class="w-full max-w-6xl mx-auto px-4 md:px-6 lg:px-8">
|
||||||
<div class="bg-white rounded-lg shadow">
|
<div class="bg-white rounded-lg shadow">
|
||||||
<div class="md:min-h-[50vh] divide-y divide-gray-200 lg:grid lg:grid-cols-12 lg:divide-y-0 lg:divide-x">
|
<div class="md:min-h-[50vh] divide-y divide-gray-200 lg:grid lg:grid-cols-12 lg:divide-y-0 lg:divide-x">
|
||||||
<aside class="py-6 sm:py-8 lg:col-span-3">
|
<aside class="py-6 sm:py-8 lg:col-span-3">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<main class="w-full max-w-6xl mx-auto pb-12 px-4 md:px-6 lg:px-8">
|
<main class="w-full max-w-6xl mx-auto px-4 md:px-6 lg:px-8">
|
||||||
<div class="md:min-h-[50vh] bg-white rounded-lg shadow">
|
<div class="md:min-h-[50vh] bg-white rounded-lg shadow">
|
||||||
<div class="px-6 sm:px-12 pt-2 sm:pt-4">
|
<div class="px-6 sm:px-12 pt-2 sm:pt-4">
|
||||||
<%= render partial: @tabnav_partial %>
|
<%= render partial: @tabnav_partial %>
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
class Admin::EditableContentsController < Admin::BaseController
|
||||||
|
before_action :set_content, only: [:show, :edit, :update]
|
||||||
|
before_action :set_current_section, only: [:index, :show, :edit]
|
||||||
|
|
||||||
|
def index
|
||||||
|
@path = params[:path].presence
|
||||||
|
scope = EditableContent.order(path: :asc)
|
||||||
|
scope = scope.where(path: @path) if @path
|
||||||
|
@pagy, @contents = pagy(scope)
|
||||||
|
end
|
||||||
|
|
||||||
|
def show
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
return_to = params[:editable_content][:redirect_to].presence
|
||||||
|
|
||||||
|
if @editable_content.update(content_params)
|
||||||
|
if return_to
|
||||||
|
redirect_to return_to
|
||||||
|
else
|
||||||
|
render status: :ok
|
||||||
|
end
|
||||||
|
else
|
||||||
|
render :edit, status: :unprocessable_entity
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_content
|
||||||
|
@editable_content = EditableContent.find(params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def content_params
|
||||||
|
params.require(:editable_content).permit(:path, :key, :lang, :content, :rich_text)
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_current_section
|
||||||
|
@current_section = :content
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -12,7 +12,11 @@ class Admin::UsersController < Admin::BaseController
|
|||||||
@contributors = ldap.search_users(:memberStatus, :contributor, :cn) if @show_contributors
|
@contributors = ldap.search_users(:memberStatus, :contributor, :cn) if @show_contributors
|
||||||
@sustainers = ldap.search_users(:memberStatus, :sustainer, :cn) if @show_sustainers
|
@sustainers = ldap.search_users(:memberStatus, :sustainer, :cn) if @show_sustainers
|
||||||
@admins = ldap.search_users(:admin, true, :cn)
|
@admins = ldap.search_users(:admin, true, :cn)
|
||||||
@pagy, @users = pagy(User.where(ou: ou).order(cn: :asc))
|
|
||||||
|
@username = params[:username].presence
|
||||||
|
users_scope = User.where(ou: ou).order(cn: :asc)
|
||||||
|
users_scope = users_scope.where("cn LIKE ?", "%#{User.sanitize_sql_like(@username.downcase)}%") if @username
|
||||||
|
@pagy, @users = pagy(users_scope)
|
||||||
|
|
||||||
@stats = {
|
@stats = {
|
||||||
users_confirmed: User.where(ou: ou).confirmed.count,
|
users_confirmed: User.where(ou: ou).confirmed.count,
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ class ApplicationController < ActionController::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def after_sign_in_path_for(user)
|
def after_sign_in_path_for(user)
|
||||||
session[:user_return_to] || root_path
|
session.delete(:user_return_to) || root_path
|
||||||
end
|
end
|
||||||
|
|
||||||
def lndhub_authenticate(options={})
|
def lndhub_authenticate(options={})
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
class Contributions::OtherController < ApplicationController
|
||||||
|
before_action :authenticate_user!
|
||||||
|
before_action :set_content_editing
|
||||||
|
|
||||||
|
# GET /contributions/other
|
||||||
|
def index
|
||||||
|
@current_section = :contributions
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_content_editing
|
||||||
|
return unless params[:edit] && current_user.is_admin?
|
||||||
|
@edit_content = true
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
class Contributions::ProjectsController < ApplicationController
|
|
||||||
before_action :authenticate_user!
|
|
||||||
|
|
||||||
# GET /contributions
|
|
||||||
def index
|
|
||||||
@current_section = :contributions
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -55,7 +55,12 @@ class Devise::PasswordsController < DeviseController
|
|||||||
|
|
||||||
protected
|
protected
|
||||||
def after_resetting_password_path_for(resource)
|
def after_resetting_password_path_for(resource)
|
||||||
Devise.sign_in_after_reset_password ? after_sign_in_path_for(resource) : new_session_path(resource_name)
|
session.delete(:user_return_to)
|
||||||
|
if Devise.sign_in_after_reset_password
|
||||||
|
root_path
|
||||||
|
else
|
||||||
|
new_session_path(resource_name)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# The path used after sending reset password instructions
|
# The path used after sending reset password instructions
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
class PagesController < ApplicationController
|
||||||
|
def privacy
|
||||||
|
@current_section = :privacy
|
||||||
|
end
|
||||||
|
|
||||||
|
def tos
|
||||||
|
@current_section = :tos
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
class Rs::OauthController < ApplicationController
|
class Rs::OauthController < ApplicationController
|
||||||
|
prepend_before_action :assert_redirect_uri, only: [:new, :create]
|
||||||
before_action :require_signed_in_with_username, only: :new
|
before_action :require_signed_in_with_username, only: :new
|
||||||
before_action :authenticate_user!, only: :create
|
before_action :authenticate_user!, only: :create
|
||||||
|
|
||||||
@@ -16,8 +17,6 @@ class Rs::OauthController < ApplicationController
|
|||||||
["In 1 month", 1.month.from_now],
|
["In 1 month", 1.month.from_now],
|
||||||
["In 1 day", 1.day.from_now]]
|
["In 1 day", 1.day.from_now]]
|
||||||
|
|
||||||
http_status :bad_request and return unless @redirect_uri.present?
|
|
||||||
|
|
||||||
unless current_user == @user
|
unless current_user == @user
|
||||||
sign_out :user
|
sign_out :user
|
||||||
|
|
||||||
@@ -64,8 +63,6 @@ class Rs::OauthController < ApplicationController
|
|||||||
state = params[:state].presence
|
state = params[:state].presence
|
||||||
expire_at = params[:expire_at].presence
|
expire_at = params[:expire_at].presence
|
||||||
|
|
||||||
http_status :bad_request and return unless redirect_uri.present?
|
|
||||||
|
|
||||||
if permissions.empty?
|
if permissions.empty?
|
||||||
redirect_to(url_with_state("#{redirect_uri}#error=invalid_scope", state),
|
redirect_to(url_with_state("#{redirect_uri}#error=invalid_scope", state),
|
||||||
allow_other_host: true) and return
|
allow_other_host: true) and return
|
||||||
@@ -97,6 +94,10 @@ class Rs::OauthController < ApplicationController
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def assert_redirect_uri
|
||||||
|
http_status :bad_request unless params[:redirect_uri].present?
|
||||||
|
end
|
||||||
|
|
||||||
def require_signed_in_with_username
|
def require_signed_in_with_username
|
||||||
unless user_signed_in?
|
unless user_signed_in?
|
||||||
session[:user_return_to] = request.url
|
session[:user_return_to] = request.url
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
class TurboController < ApplicationController
|
|
||||||
class Responder < ActionController::Responder
|
|
||||||
def to_turbo_stream
|
|
||||||
controller.render(options.merge(formats: :html))
|
|
||||||
rescue ActionView::MissingTemplate => error
|
|
||||||
if get?
|
|
||||||
raise error
|
|
||||||
elsif has_errors? && default_action
|
|
||||||
render rendering_options.merge(formats: :html, status: :unprocessable_entity)
|
|
||||||
else
|
|
||||||
redirect_to navigation_location
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
self.responder = Responder
|
|
||||||
respond_to :html, :turbo_stream
|
|
||||||
end
|
|
||||||
@@ -6,7 +6,7 @@ class Users::DeviseController < ApplicationController
|
|||||||
if get?
|
if get?
|
||||||
raise error
|
raise error
|
||||||
elsif has_errors? && default_action
|
elsif has_errors? && default_action
|
||||||
render rendering_options.merge(formats: :html, status: :unprocessable_entity)
|
render error_rendering_options.merge(formats: :html, status: :unprocessable_entity)
|
||||||
else
|
else
|
||||||
redirect_to navigation_location
|
redirect_to navigation_location
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -15,6 +15,12 @@ module ApplicationHelper
|
|||||||
tag.span text, class: "inline-flex items-center rounded-full bg-#{color}-100 px-2.5 py-0.5 text-xs font-medium text-#{color}-800"
|
tag.span text, class: "inline-flex items-center rounded-full bg-#{color}-100 px-2.5 py-0.5 text-xs font-medium text-#{color}-800"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def markdown_to_html(string)
|
||||||
|
raw Kramdown::Document.new(string, {
|
||||||
|
input: "GFM"
|
||||||
|
}).to_html
|
||||||
|
end
|
||||||
|
|
||||||
def image_url_for(attachment)
|
def image_url_for(attachment)
|
||||||
return s3_image_url(attachment) if Setting.s3_enabled?
|
return s3_image_url(attachment) if Setting.s3_enabled?
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
class EditableContent < ApplicationRecord
|
||||||
|
validates :key, presence: true,
|
||||||
|
uniqueness: { scope: :context }
|
||||||
|
|
||||||
|
def has_content?
|
||||||
|
content.present?
|
||||||
|
end
|
||||||
|
|
||||||
|
def is_empty?
|
||||||
|
content.blank?
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -10,18 +10,18 @@ class LndhubUser < LndhubBase
|
|||||||
foreign_key: "login"
|
foreign_key: "login"
|
||||||
|
|
||||||
def balance
|
def balance
|
||||||
accounts.current.first.ledgers.sum("account_ledgers.amount").to_i.abs
|
accounts.current.order(:id).first.ledgers.sum("account_ledgers.amount").to_i.abs
|
||||||
end
|
end
|
||||||
|
|
||||||
def sum_outgoing
|
def sum_outgoing
|
||||||
accounts.outgoing.first.ledgers.sum("account_ledgers.amount").to_i.abs
|
accounts.outgoing.order(:id).first.ledgers.sum("account_ledgers.amount").to_i.abs
|
||||||
end
|
end
|
||||||
|
|
||||||
def sum_incoming
|
def sum_incoming
|
||||||
accounts.incoming.first.ledgers.sum("account_ledgers.amount").to_i.abs
|
accounts.incoming.order(:id).first.ledgers.sum("account_ledgers.amount").to_i.abs
|
||||||
end
|
end
|
||||||
|
|
||||||
def sum_fees
|
def sum_fees
|
||||||
accounts.fees.first.ledgers.sum("account_ledgers.amount").to_i.abs
|
accounts.fees.order(:id).first.ledgers.sum("account_ledgers.amount").to_i.abs
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
+5
-5
@@ -131,11 +131,11 @@ class User < ApplicationRecord
|
|||||||
end
|
end
|
||||||
|
|
||||||
def is_admin?
|
def is_admin?
|
||||||
admin ||= if admin = Devise::LDAP::Adapter.get_ldap_param(self.cn, :admin)
|
@admin ||= if admin = Devise::LDAP::Adapter.get_ldap_param(self.cn, :admin)
|
||||||
!!admin.first
|
!!admin.first
|
||||||
else
|
else
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def address
|
def address
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ module EjabberdManager
|
|||||||
def call
|
def call
|
||||||
unless @overwrite
|
unless @overwrite
|
||||||
current_avatar = EjabberdManager::GetAvatar.call(user: @user)
|
current_avatar = EjabberdManager::GetAvatar.call(user: @user)
|
||||||
Rails.logger.info { "User #{user.cn} already has an avatar set" }
|
Rails.logger.info { "User #{@user.cn} already has an avatar set" }
|
||||||
return if current_avatar.present?
|
return if current_avatar.present?
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -25,9 +25,8 @@ module EjabberdManager
|
|||||||
raise res.inspect if res.status != 200
|
raise res.inspect if res.status != 200
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def process_avatar
|
def process_avatar
|
||||||
@user.avatar.blob.open do |file|
|
@user.avatar.blob.open do |file|
|
||||||
@@ -77,4 +76,5 @@ module EjabberdManager
|
|||||||
""".strip,
|
""".strip,
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -38,8 +38,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td><%= web_app.name %></td>
|
<td><%= web_app.name %></td>
|
||||||
<td><%= link_to web_app.url, web_app.url,
|
<td><%= link_to web_app.url, web_app.url,
|
||||||
target: "_blank", rel: "nofollow noopener",
|
target: "_blank", rel: "nofollow noopener" %></td>
|
||||||
class: "ks-text-link" %></td>
|
|
||||||
<td class="hidden md:table-cell"><%= web_app.remote_storage_authorizations.count %></td>
|
<td class="hidden md:table-cell"><%= web_app.remote_storage_authorizations.count %></td>
|
||||||
<td class="hidden md:table-cell">
|
<td class="hidden md:table-cell">
|
||||||
<span title="<%= web_app.created_at %>" class="cursor-help">
|
<span title="<%= web_app.created_at %>" class="cursor-help">
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<% donations.each do |donation| %>
|
<% donations.each do |donation| %>
|
||||||
<tr>
|
<tr>
|
||||||
<td><%= link_to donation.user.cn, admin_user_path(donation.user.cn), class: 'ks-text-link' %></td>
|
<td><%= link_to donation.user.cn, admin_user_path(donation.user.cn) %></td>
|
||||||
<td class="text-right"><% if donation.amount_sats.present? %><%= number_with_delimiter donation.amount_sats %><% end %></td>
|
<td class="text-right"><% if donation.amount_sats.present? %><%= number_with_delimiter donation.amount_sats %><% end %></td>
|
||||||
<td class="text-right"><% if donation.fiat_amount.present? %><%= number_to_currency donation.fiat_amount.to_f / 100, unit: "" %> <%= donation.fiat_currency %><% end %></td>
|
<td class="text-right"><% if donation.fiat_amount.present? %><%= number_to_currency donation.fiat_amount.to_f / 100, unit: "" %> <%= donation.fiat_currency %><% end %></td>
|
||||||
<td class="pl-2"><%= donation.public_name %></td>
|
<td class="pl-2"><%= donation.public_name %></td>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>User</th>
|
<th>User</th>
|
||||||
<td><%= link_to @donation.user.cn, admin_user_path(@donation.user.cn), class: 'ks-text-link' %></td>
|
<td><%= link_to @donation.user.cn, admin_user_path(@donation.user.cn) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Donation Method</th>
|
<th>Donation Method</th>
|
||||||
|
|||||||
@@ -44,8 +44,8 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="overflow-ellipsis font-mono"><%= invitation.token %></td>
|
<td class="overflow-ellipsis font-mono"><%= invitation.token %></td>
|
||||||
<td><%= invitation.used_at.strftime("%Y-%m-%d (%H:%M UTC)") %></td>
|
<td><%= invitation.used_at.strftime("%Y-%m-%d (%H:%M UTC)") %></td>
|
||||||
<td><%= link_to invitation.user.cn, admin_user_path(invitation.user.cn), class: "ks-text-link" %></td>
|
<td><%= link_to invitation.user.cn, admin_user_path(invitation.user.cn) %></td>
|
||||||
<td><%= link_to invitation.invitee.cn, admin_user_path(invitation.invitee.cn), class: "ks-text-link" %></td>
|
<td><%= link_to invitation.invitee.cn, admin_user_path(invitation.invitee.cn) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<% if user = @users.find{ |u| u[2] == account.login } %>
|
<% if user = @users.find{ |u| u[2] == account.login } %>
|
||||||
<%= link_to user[0], admin_user_path(user[0]), class: "ks-text-link" %>
|
<%= link_to user[0], admin_user_path(user[0]) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</td>
|
</td>
|
||||||
<td><%= number_with_delimiter account.balance.to_i.to_s %></td>
|
<td><%= number_with_delimiter account.balance.to_i.to_s %></td>
|
||||||
|
|||||||
@@ -30,6 +30,11 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<%= render partial: "admin/username_search_form",
|
||||||
|
locals: { path: admin_users_path } %>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<table class="divided mb-8">
|
<table class="divided mb-8">
|
||||||
<thead>
|
<thead>
|
||||||
@@ -42,7 +47,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<% @users.each do |user| %>
|
<% @users.each do |user| %>
|
||||||
<tr>
|
<tr>
|
||||||
<td><%= link_to(user.cn, admin_user_path(user.cn), class: 'ks-text-link') %></td>
|
<td><%= link_to(user.cn, admin_user_path(user.cn)) %></td>
|
||||||
<td>
|
<td>
|
||||||
<%= user.confirmed_at.nil? ? badge("pending", :yellow) : "" %>
|
<%= user.confirmed_at.nil? ? badge("pending", :yellow) : "" %>
|
||||||
<% if @show_contributors %><%= @contributors.include?(user.cn) ? badge("contributor", :green) : "" %><% end %>
|
<% if @show_contributors %><%= @contributors.include?(user.cn) ? badge("contributor", :green) : "" %><% end %>
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
<th>Donations</th>
|
<th>Donations</th>
|
||||||
<td>
|
<td>
|
||||||
<% if @user.donations.any? %>
|
<% if @user.donations.any? %>
|
||||||
<%= link_to admin_donations_path(username: @user.cn), class: "ks-text-link" do %>
|
<%= link_to admin_donations_path(username: @user.cn) do %>
|
||||||
<%= @user.donations.completed.count %> for
|
<%= @user.donations.completed.count %> for
|
||||||
<%= number_with_delimiter @user.donations.completed.sum("amount_sats") %> sats
|
<%= number_with_delimiter @user.donations.completed.sum("amount_sats") %> sats
|
||||||
<% end %>
|
<% end %>
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
<th>Invited by</th>
|
<th>Invited by</th>
|
||||||
<td>
|
<td>
|
||||||
<% if @user.inviter %>
|
<% if @user.inviter %>
|
||||||
<%= link_to @user.inviter.cn, admin_user_path(@user.inviter.cn), class: 'ks-text-link' %>
|
<%= link_to @user.inviter.cn, admin_user_path(@user.inviter.cn) %>
|
||||||
<% else %>—<% end %>
|
<% else %>—<% end %>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -102,10 +102,10 @@
|
|||||||
<% if @invitees.any? %>
|
<% if @invitees.any? %>
|
||||||
<ul class="mb-0">
|
<ul class="mb-0">
|
||||||
<% @recent_invitees.each do |invitee| %>
|
<% @recent_invitees.each do |invitee| %>
|
||||||
<li class="leading-none mb-2 last:mb-0"><%= link_to invitee.cn, admin_user_path(invitee.cn), class: "ks-text-link" %></li>
|
<li class="leading-none mb-2 last:mb-0"><%= link_to invitee.cn, admin_user_path(invitee.cn) %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if @more_invitees > 0 %>
|
<% if @more_invitees > 0 %>
|
||||||
<li>and <%= link_to "#{@more_invitees} more", admin_invitations_path(username: @user.cn), class: "ks-text-link" %></li>
|
<li>and <%= link_to "#{@more_invitees} more", admin_invitations_path(username: @user.cn) %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
<% else %>—<% end %>
|
<% else %>—<% end %>
|
||||||
@@ -168,7 +168,7 @@
|
|||||||
<span class="font-mono" title="<%= @user.pgp_fpr %>">
|
<span class="font-mono" title="<%= @user.pgp_fpr %>">
|
||||||
<% if @user.pgp_pubkey_contains_user_address? %>
|
<% if @user.pgp_pubkey_contains_user_address? %>
|
||||||
<%= link_to wkd_key_url(hashed_username: @user.wkd_hash, l: @user.cn, format: :txt),
|
<%= link_to wkd_key_url(hashed_username: @user.wkd_hash, l: @user.cn, format: :txt),
|
||||||
class: "ks-text-link", target: "_blank" do %>
|
target: "_blank" do %>
|
||||||
<%= "#{@user.pgp_fpr[0, 8]}…#{@user.pgp_fpr[-8..-1]}" %>
|
<%= "#{@user.pgp_fpr[0, 8]}…#{@user.pgp_fpr[-8..-1]}" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<%= render MainWithTabnavComponent.new(tabnav_partial: "shared/tabnav_contributions") do %>
|
<%= render MainWithTabnavComponent.new(tabnav_partial: "shared/tabnav_contributions") do %>
|
||||||
<section>
|
<section>
|
||||||
<p class="mb-12">
|
<p class="mb-12">
|
||||||
Your financial contributions to the development and upkeep of Kosmos
|
Your financial contributions to the development and upkeep of our
|
||||||
software and services.
|
software and services.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<%= render HeaderComponent.new(title: "Contributions") %>
|
||||||
|
|
||||||
|
<%= render MainWithTabnavComponent.new(tabnav_partial: "shared/tabnav_contributions") do %>
|
||||||
|
<section>
|
||||||
|
<%= render EditableContentComponent.new(
|
||||||
|
context: "contributions/other", key: "body", rich_text: true,
|
||||||
|
default: "No content yet") %>
|
||||||
|
|
||||||
|
<% if current_user.is_admin? %>
|
||||||
|
<div class="mt-8 pt-6 border-t border-gray-200 text-right">
|
||||||
|
<%= render EditContentButtonComponent.new(
|
||||||
|
context: "contributions/other", key: "title",
|
||||||
|
redirect_to: request.path) do %>Edit title<% end %>
|
||||||
|
<%= render EditContentButtonComponent.new(
|
||||||
|
context: "contributions/other", key: "body", rich_text: true,
|
||||||
|
redirect_to: request.path) do %>Edit content<% end %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</section>
|
||||||
|
<% end %>
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
<%= render HeaderComponent.new(title: "Contributions") %>
|
|
||||||
|
|
||||||
<%= render MainWithTabnavComponent.new(tabnav_partial: "shared/tabnav_contributions") do %>
|
|
||||||
<section>
|
|
||||||
<p class="mb-8">
|
|
||||||
Project contributions are how we develop and run all Kosmos software and
|
|
||||||
services. Everything we create and provide is free and open-source
|
|
||||||
software, even the page you're looking at right now!
|
|
||||||
</p>
|
|
||||||
<h3>Start contributing</h3>
|
|
||||||
<p>
|
|
||||||
Check out our
|
|
||||||
<a href="https://kosmos.org/projects/" target="_blank" class="ks-text-link">projects page</a>
|
|
||||||
for some (but not all) potential places that can use your help.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
There's something to do for everyone, especially non-programmers! For
|
|
||||||
example, we need more help with graphics, UI/UX design, and
|
|
||||||
content/copywriting. Also, testing any of our software and reporting
|
|
||||||
issues you encounter along the way is very valuable.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
A good way to get started is to join one of our
|
|
||||||
<a href="https://wiki.kosmos.org/Main_Page#Chat" target="_blank" class="ks-text-link">chat rooms</a>
|
|
||||||
and introduce yourself. Alternatively, you can also ping us on any other
|
|
||||||
medium, or even just grab an open issue on our
|
|
||||||
<a href="https://gitea.kosmos.org/kosmos/" target="_blank" class="ks-text-link">Gitea</a>
|
|
||||||
or on
|
|
||||||
<a href="https://github.com/67P/" target="_blank" class="ks-text-link">GitHub</a>
|
|
||||||
and dive right in.
|
|
||||||
</p>
|
|
||||||
<p class="mb-8">
|
|
||||||
Last but not least, if you want to help by proposing new features or
|
|
||||||
services, or by giving feedback on existing ones, head over to the
|
|
||||||
<a href="https://community.kosmos.org/" target="_blank" class="ks-text-link">community forums</a>,
|
|
||||||
where you can do just that.
|
|
||||||
</p>
|
|
||||||
<h3>Open Source Grants</h3>
|
|
||||||
<p>
|
|
||||||
Money coming in from financial contributions is first used to pay for our
|
|
||||||
bills. Additional funds are being paid out directly to our contributors,
|
|
||||||
including you, according to their rough share of contributions.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
We have run two 6-month trials so far, with the next trial period
|
|
||||||
starting sometime soon. Watch your email for notifications about it!
|
|
||||||
</p>
|
|
||||||
</section>
|
|
||||||
<% end %>
|
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
bg-[length:86%] bg-[center_top_-40px] bg-no-repeat
|
bg-[length:86%] bg-[center_top_-40px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_xmpp.svg)]">
|
bg-[url(/img/logos/icon_xmpp.svg)]">
|
||||||
<%= link_to services_chat_path,
|
<%= link_to services_chat_path,
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Chat</h3>
|
<h3 class="mb-3.5">Chat</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Federated chat rooms and instant messaging
|
Federated chat rooms and instant messaging
|
||||||
@@ -20,7 +20,8 @@
|
|||||||
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
||||||
bg-[length:88%] bg-[center_top_-40px] bg-no-repeat
|
bg-[length:88%] bg-[center_top_-40px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_mastodon.svg)]">
|
bg-[url(/img/logos/icon_mastodon.svg)]">
|
||||||
<%= link_to services_mastodon_path, class: "block h-full px-6 py-6 rounded-md" do %>
|
<%= link_to services_mastodon_path,
|
||||||
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Mastodon</h3>
|
<h3 class="mb-3.5">Mastodon</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Your account on the Open Social Web
|
Your account on the Open Social Web
|
||||||
@@ -33,7 +34,8 @@
|
|||||||
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
<div class="border border-gray-300 rounded-md hover:border-gray-400
|
||||||
bg-[length:90%] bg-[center_top_-160px] bg-no-repeat
|
bg-[length:90%] bg-[center_top_-160px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_mail.svg)]">
|
bg-[url(/img/logos/icon_mail.svg)]">
|
||||||
<%= link_to services_email_path, class: "block h-full px-6 py-6 rounded-md" do %>
|
<%= link_to services_email_path,
|
||||||
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">E-Mail</h3>
|
<h3 class="mb-3.5">E-Mail</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
A no-bullshit email account
|
A no-bullshit email account
|
||||||
@@ -47,7 +49,7 @@
|
|||||||
bg-[length:80%] bg-[center_top_-156px] bg-no-repeat
|
bg-[length:80%] bg-[center_top_-156px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_remotestorage.svg)]">
|
bg-[url(/img/logos/icon_remotestorage.svg)]">
|
||||||
<%= link_to services_storage_path,
|
<%= link_to services_storage_path,
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Storage</h3>
|
<h3 class="mb-3.5">Storage</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Sync your data between apps and devices
|
Sync your data between apps and devices
|
||||||
@@ -60,7 +62,7 @@
|
|||||||
bg-cover bg-center sm:bg-[center_top_-140px] bg-no-repeat
|
bg-cover bg-center sm:bg-[center_top_-140px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_lightning.svg)]">
|
bg-[url(/img/logos/icon_lightning.svg)]">
|
||||||
<%= link_to services_lightning_index_path,
|
<%= link_to services_lightning_index_path,
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Lightning Network</h3>
|
<h3 class="mb-3.5">Lightning Network</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Send and receive sats over the Bitcoin Lightning Network
|
Send and receive sats over the Bitcoin Lightning Network
|
||||||
@@ -73,7 +75,7 @@
|
|||||||
bg-[length:80%] bg-center bg-no-repeat
|
bg-[length:80%] bg-center bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_discourse.svg)]">
|
bg-[url(/img/logos/icon_discourse.svg)]">
|
||||||
<%= link_to "#{Setting.discourse_public_url}/session/sso?return_path=/",
|
<%= link_to "#{Setting.discourse_public_url}/session/sso?return_path=/",
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Discourse</h3>
|
<h3 class="mb-3.5">Discourse</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Community forums and support/help site
|
Community forums and support/help site
|
||||||
@@ -86,7 +88,7 @@
|
|||||||
bg-[length:92%] bg-center bg-no-repeat
|
bg-[length:92%] bg-center bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_gitea.png)]">
|
bg-[url(/img/logos/icon_gitea.png)]">
|
||||||
<%= link_to Setting.gitea_public_url,
|
<%= link_to Setting.gitea_public_url,
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Gitea</h3>
|
<h3 class="mb-3.5">Gitea</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Code hosting and collaboration for software projects
|
Code hosting and collaboration for software projects
|
||||||
@@ -99,7 +101,7 @@
|
|||||||
bg-[length:86%] bg-[center_top_-60px] bg-no-repeat
|
bg-[length:86%] bg-[center_top_-60px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_droneci.svg)]">
|
bg-[url(/img/logos/icon_droneci.svg)]">
|
||||||
<%= link_to Setting.droneci_public_url,
|
<%= link_to Setting.droneci_public_url,
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Drone CI</h3>
|
<h3 class="mb-3.5">Drone CI</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Continuous integration for software projects on Gitea
|
Continuous integration for software projects on Gitea
|
||||||
@@ -112,10 +114,10 @@
|
|||||||
bg-cover bg-[center_top_-20px] bg-no-repeat
|
bg-cover bg-[center_top_-20px] bg-no-repeat
|
||||||
bg-[url(/img/logos/icon_mediawiki.svg)]">
|
bg-[url(/img/logos/icon_mediawiki.svg)]">
|
||||||
<%= link_to Setting.mediawiki_public_url,
|
<%= link_to Setting.mediawiki_public_url,
|
||||||
class: "block h-full px-6 py-6 rounded-md" do %>
|
class: "block h-full px-6 py-6 rounded-md btn-text-dark" do %>
|
||||||
<h3 class="mb-3.5">Wiki</h3>
|
<h3 class="mb-3.5">Wiki</h3>
|
||||||
<p class="text-gray-600">
|
<p class="text-gray-600">
|
||||||
Kosmos documentation and knowledge base
|
Documentation and knowledge base
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
data: { action: "click->settings--toggle#toggleSwitch" } %>
|
data: { action: "click->settings--toggle#toggleSwitch" } %>
|
||||||
<p class="grow text-sm text-right">
|
<p class="grow text-sm text-right">
|
||||||
<%= link_to "Forgot your password?", new_password_path(resource_name),
|
<%= link_to "Forgot your password?", new_password_path(resource_name),
|
||||||
class: "text-gray-500 underline" %><br />
|
class: "text-gray-500 visited:text-gray-500 underline" %><br />
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<% if resource.errors.any? %>
|
<% if resource.errors.any? %>
|
||||||
<div id="error_explanation">
|
<div id="error_explanation" class="mb-6">
|
||||||
<ul>
|
<ul>
|
||||||
<% resource.errors.full_messages.each do |message| %>
|
<% resource.errors.full_messages.each do |message| %>
|
||||||
<li class="text-red-600"><%= message %></li>
|
<li class="text-red-600"><%= message %></li>
|
||||||
|
|||||||
@@ -2,28 +2,28 @@
|
|||||||
<%- if controller_name != 'sessions' %>
|
<%- if controller_name != 'sessions' %>
|
||||||
<p class="mb-2">
|
<p class="mb-2">
|
||||||
<%= link_to "Log in", new_session_path(resource_name),
|
<%= link_to "Log in", new_session_path(resource_name),
|
||||||
class: "text-gray-500 underline" %>
|
class: "text-gray-500 visited:text-gray-500 underline" %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
||||||
<p class="mb-2">
|
<p class="mb-2">
|
||||||
<%= link_to "Forgot your password?", new_password_path(resource_name),
|
<%= link_to "Forgot your password?", new_password_path(resource_name),
|
||||||
class: "text-gray-500 underline" %>
|
class: "text-gray-500 visited:text-gray-500 underline" %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%- if devise_mapping.confirmable? && !controller_name.match(/^(confirmations|sessions)$/) %>
|
<%- if devise_mapping.confirmable? && !controller_name.match(/^(confirmations|sessions)$/) %>
|
||||||
<p class="mb-2">
|
<p class="mb-2">
|
||||||
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name),
|
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name),
|
||||||
class: "text-gray-500 underline" %>
|
class: "text-gray-500 visited:text-gray-500 underline" %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
||||||
<p class="mb-2">
|
<p class="mb-2">
|
||||||
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name),
|
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name),
|
||||||
class: "text-gray-500 underline" %>
|
class: "text-gray-500 visited:text-gray-500 underline" %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<section>
|
<section>
|
||||||
<% if @invitations_unused.any? %>
|
<% if @invitations_unused.any? %>
|
||||||
<p class="mb-8">
|
<p class="mb-8">
|
||||||
Invite your friends to a Kosmos account by sharing an invitation URL with them:
|
Invite your friends to register an account by sharing an invitation URL with them:
|
||||||
</p>
|
</p>
|
||||||
<ul class="md:w-3/4">
|
<ul class="md:w-3/4">
|
||||||
<% @invitations_unused.each do |invitation| %>
|
<% @invitations_unused.each do |invitation| %>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<%= javascript_importmap_tags %>
|
<%= javascript_importmap_tags %>
|
||||||
</head>
|
</head>
|
||||||
<body <%= @context.present? ? "id=#{@context}" : "" %> class="h-full <%= @context == :admin ? "bg-red-500" : "bg-sky-900" %>">
|
<body <%= @context.present? ? "id=#{@context}" : "" %> class="h-full <%= @context == :admin ? "bg-red-500" : "bg-sky-900" %>">
|
||||||
<div class="min-h-full">
|
<div class="min-h-full flex flex-col">
|
||||||
<nav data-controller="topbar">
|
<nav data-controller="topbar">
|
||||||
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
|
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
|
||||||
<div class="border-b border-gray-200/10">
|
<div class="border-b border-gray-200/10">
|
||||||
@@ -41,6 +41,10 @@
|
|||||||
<%= link_to "Log out", destroy_user_session_path, class: 'underline hover:text-white' %>
|
<%= link_to "Log out", destroy_user_session_path, class: 'underline hover:text-white' %>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
<% elsif !user_signed_in? && controller_name != 'sessions' %>
|
||||||
|
<div class="flex items-baseline text-gray-200/80 text-sm font-medium">
|
||||||
|
<%= link_to "Log in", new_user_session_path, class: 'underline hover:text-white' %>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="-mr-2 flex md:hidden">
|
<div class="-mr-2 flex md:hidden">
|
||||||
@@ -60,6 +64,11 @@
|
|||||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
|
<% elsif !user_signed_in? && controller_name != 'sessions' %>
|
||||||
|
<div class="mt-3 px-2 space-y-1">
|
||||||
|
<%= link_to "Log in", new_user_session_path,
|
||||||
|
class: 'block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-900/30 active:text-white active:bg-gray-900/30' %>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -96,7 +105,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= yield %>
|
<div class="flex-grow">
|
||||||
|
<%= yield %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav id="footer" class="max-w-6xl mx-auto pt-4 sm:px-6 lg:px-8">
|
||||||
|
<div class="flex justify-end items-center space-x-4 h-16">
|
||||||
|
<%= link_to "Terms", tos_page_path, class: main_nav_class(@current_section, :tos) %>
|
||||||
|
<%= link_to "Privacy", privacy_page_path, class: main_nav_class(@current_section, :privacy) %>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Hi <%= @user.display_name.presence || @user.cn %>,
|
Hi <%= @user.display_name.presence || @user.cn %>,
|
||||||
|
|
||||||
New invitations have just been added to your Kosmos account, so you can invite more people to our cooperative services:
|
New invitations have just been added to your account, so you can invite more people to our cooperative services:
|
||||||
|
|
||||||
<%= invitations_url %>
|
<%= invitations_url %>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Hi <%= @user.display_name.presence || @user.cn %>,
|
Hi <%= @user.display_name.presence || @user.cn %>,
|
||||||
|
|
||||||
You have just granted '<%= @auth.client_id %>' access to your Kosmos Storage, with the following permissions:
|
You have just granted '<%= @auth.client_id %>' access to your remote storage, with the following permissions:
|
||||||
|
|
||||||
<% @permissions.each do |p| %>
|
<% @permissions.each do |p| %>
|
||||||
* <%= p %>
|
* <%= p %>
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<%= render HeaderComponent.new(title: "Privacy Policy") %>
|
||||||
|
|
||||||
|
<%= render MainSimpleComponent.new do %>
|
||||||
|
<section>
|
||||||
|
<%= render EditableContentComponent.new(
|
||||||
|
context: "privacy", key: "body", rich_text: true,
|
||||||
|
default: "No content yet. Please add a privacy policy.") %>
|
||||||
|
|
||||||
|
<% if user_signed_in? && current_user.is_admin? %>
|
||||||
|
<div class="mt-8 pt-6 border-t border-gray-200 text-right">
|
||||||
|
<%= render EditContentButtonComponent.new(
|
||||||
|
context: "privacy", key: "body", rich_text: true,
|
||||||
|
redirect_to: request.path) do %>Edit content<% end %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</section>
|
||||||
|
<% end %>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<%= render HeaderComponent.new(title: "Terms of Service") %>
|
||||||
|
|
||||||
|
<%= render MainSimpleComponent.new do %>
|
||||||
|
<section>
|
||||||
|
<%= render EditableContentComponent.new(
|
||||||
|
context: "tos", key: "body", rich_text: true,
|
||||||
|
default: "No content yet. Please add your terms of service.") %>
|
||||||
|
|
||||||
|
<% if user_signed_in? && current_user.is_admin? %>
|
||||||
|
<div class="mt-8 pt-6 border-t border-gray-200 text-right">
|
||||||
|
<%= render EditContentButtonComponent.new(
|
||||||
|
context: "tos", key: "body", rich_text: true,
|
||||||
|
redirect_to: request.path) do %>Edit content<% end %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</section>
|
||||||
|
<% end %>
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
<section class="permissions">
|
<section class="permissions">
|
||||||
<p class="mb-8">
|
<p class="mb-8">
|
||||||
The app on
|
The app on
|
||||||
<%= link_to @client_id, "https://#{@client_id}", class: "ks-text-link" %>
|
<%= link_to @client_id, "https://#{@client_id}" %>
|
||||||
is asking for access to these folders:
|
is asking for access to these folders:
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
@@ -62,35 +62,30 @@
|
|||||||
</select>
|
</select>
|
||||||
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Android
|
Android
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
iOS
|
iOS
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Linux
|
Linux
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Windows
|
Windows
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
macOS
|
macOS
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<!-- <li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change"> -->
|
|
||||||
<!-- <a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline"> -->
|
|
||||||
<!-- Web -->
|
|
||||||
<!-- </a> -->
|
|
||||||
<!-- </li> -->
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div id="apps-android" class="hidden grid grid-cols-1 gap-6"
|
<div id="apps-android" class="hidden grid grid-cols-1 gap-6"
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
<p>
|
<p>
|
||||||
Your email password is different from your main account password. You can
|
Your email password is different from your main account password. You can
|
||||||
reset your email password in the
|
reset your email password in the
|
||||||
<%= link_to "email settings", setting_path(:email), class: "ks-text-link" %>.
|
<%= link_to "email settings", setting_path(:email) %>.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
@@ -56,22 +56,22 @@
|
|||||||
</select>
|
</select>
|
||||||
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Android
|
Android
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Linux
|
Linux
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Windows
|
Windows
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
macOS
|
macOS
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -8,8 +8,8 @@
|
|||||||
<section>
|
<section>
|
||||||
<h3>Lightning Address</h3>
|
<h3>Lightning Address</h3>
|
||||||
<p class="mb-6">
|
<p class="mb-6">
|
||||||
Your Kosmos user address is also a
|
Your user address is also a
|
||||||
<a class="ks-text-link" href="https://lightningaddress.com/" target="_blank">Lightning Address</a>!
|
<a href="https://lightningaddress.com/" target="_blank">Lightning Address</a>!
|
||||||
The easiest way to receive sats is by just giving out your address:
|
The easiest way to receive sats is by just giving out your address:
|
||||||
</p>
|
</p>
|
||||||
<p data-controller="clipboard" class="flex gap-1 sm:w-2/5">
|
<p data-controller="clipboard" class="flex gap-1 sm:w-2/5">
|
||||||
@@ -32,9 +32,9 @@
|
|||||||
<section data-controller="modal" data-action="keydown.esc->modal#close">
|
<section data-controller="modal" data-action="keydown.esc->modal#close">
|
||||||
<h3>Wallet Apps</h3>
|
<h3>Wallet Apps</h3>
|
||||||
<p>
|
<p>
|
||||||
You can connect various wallet apps to your Kosmos account. This allows
|
You can connect various wallet apps to your account. This allows
|
||||||
you to both receive and send sats. Any wallet that supports
|
you to both receive and send sats. Any wallet that supports
|
||||||
<a href="https://bluewallet.io/lndhub/" class="ks-text-link" target="_blank">LNDHub</a>
|
<a href="https://bluewallet.io/lndhub/" target="_blank">LNDHub</a>
|
||||||
accounts should be able to add/import your account using our setup
|
accounts should be able to add/import your account using our setup
|
||||||
code/URL:
|
code/URL:
|
||||||
</p>
|
</p>
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
<div class="w-full grid grid-cols-1 gap-y-4 md:grid-cols-12
|
<div class="w-full grid grid-cols-1 gap-y-4 md:grid-cols-12
|
||||||
md:gap-y-6 md:gap-x-4 md:items-center">
|
md:gap-y-6 md:gap-x-4 md:items-center">
|
||||||
<h4 class="md:col-span-3">
|
<h4 class="md:col-span-3">
|
||||||
<a href="https://getalby.com/" class="ks-text-link text-xl"
|
<a href="https://getalby.com/" class="text-xl"
|
||||||
title="Alby" target="_blank">
|
title="Alby" target="_blank">
|
||||||
<%= image_tag("/img/logos/alby.svg", class: 'h-16') %>
|
<%= image_tag("/img/logos/alby.svg", class: 'h-16') %>
|
||||||
</a>
|
</a>
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
URL in the "LNDHub Export URI" field.
|
URL in the "LNDHub Export URI" field.
|
||||||
</p>
|
</p>
|
||||||
<h4 class="md:col-span-3 mt-4 mb:mt-0">
|
<h4 class="md:col-span-3 mt-4 mb:mt-0">
|
||||||
<a href="https://bluewallet.io" class="ks-text-link text-xl"
|
<a href="https://bluewallet.io" class="text-xl"
|
||||||
title="Blue Wallet" target="_blank">
|
title="Blue Wallet" target="_blank">
|
||||||
<%= image_tag("/img/logos/bluewallet.svg", class: 'h-16') %>
|
<%= image_tag("/img/logos/bluewallet.svg", class: 'h-16') %>
|
||||||
</a>
|
</a>
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
then scan the setup QR code.
|
then scan the setup QR code.
|
||||||
</p>
|
</p>
|
||||||
<h4 class="md:col-span-3 mt-4 mb:mt-0">
|
<h4 class="md:col-span-3 mt-4 mb:mt-0">
|
||||||
<a href="https://zeusln.app" class="ks-text-link text-xl"
|
<a href="https://zeusln.app" class="text-xl"
|
||||||
title="Zeus" target="_blank">
|
title="Zeus" target="_blank">
|
||||||
<%= image_tag("/img/logos/zeus.svg", class: 'h-16') %>
|
<%= image_tag("/img/logos/zeus.svg", class: 'h-16') %>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<%= render MainSimpleComponent.new do %>
|
<%= render MainSimpleComponent.new do %>
|
||||||
<section>
|
<section>
|
||||||
<p class="mb-6">
|
<p class="mb-6">
|
||||||
Follow and interact with anyone on the open social web, from your Kosmos Mastodon account.
|
Follow and interact with anyone on the open social web from your Mastodon account.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section data-controller="modal" data-action="keydown.esc->modal#close">
|
<section data-controller="modal" data-action="keydown.esc->modal#close">
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
<p>
|
<p>
|
||||||
Use your Mastodon account with many different apps, and on any devices
|
Use your Mastodon account with many different apps, and on any devices
|
||||||
you wish! When adding your account to an app, you will log in via
|
you wish! When adding your account to an app, you will log in via
|
||||||
<a href="https://kosmos.social" target="_blank" class="ks-text-link">kosmos.social</a>.
|
<a href="https://kosmos.social" target="_blank">kosmos.social</a>.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
@@ -61,32 +61,32 @@
|
|||||||
</select>
|
</select>
|
||||||
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Web
|
Web
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-5 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Android
|
Android
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
iOS
|
iOS
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Linux
|
Linux
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Windows
|
Windows
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
macOS
|
macOS
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -37,17 +37,15 @@
|
|||||||
<h3>Compatible Apps</h3>
|
<h3>Compatible Apps</h3>
|
||||||
<p>
|
<p>
|
||||||
Your Storage account is based on a new open standard called
|
Your Storage account is based on a new open standard called
|
||||||
<a href="https://remotestorage.io" target="_blank">
|
<img src="/img/logos/icon_remotestorage.svg" class="h-4 w-4 inline">
|
||||||
<img src="/img/logos/icon_remotestorage.svg" class="h-4 w-4 inline">
|
<strong>remoteStorage</strong>, which is not yet widely supported. Look
|
||||||
<strong>remoteStorage</strong>
|
|
||||||
</a>, which is not yet widely supported. Look
|
|
||||||
for the remoteStorage icon, or check the Sync settings in apps.
|
for the remoteStorage icon, or check the Sync settings in apps.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
If you want your favorite apps to support syncing data with your own
|
If you want your favorite apps to support syncing data with your own
|
||||||
Storage account, let the developers know! All relevant information is
|
Storage account, let the developers know! All relevant information is
|
||||||
available on the <a href="https://remotestorage.io"
|
available on the
|
||||||
target="_blank" class="ks-text-link">remoteStorage website</a>.
|
<a href="https://remotestorage.io" target="_blank">remoteStorage website</a>.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
@@ -67,27 +65,27 @@
|
|||||||
</select>
|
</select>
|
||||||
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
<ul class="hidden sm:flex list-reset mb-8 border-gray-200 border-b">
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Productivity
|
Productivity
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Bookmarks
|
Bookmarks
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Reading
|
Reading
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
File sharing
|
File sharing
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
<li class="mr-2" data-tabs-target="tab" data-action="click->tabs#change:prevent">
|
||||||
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline">
|
<a href="#" class="bg-white inline-block py-2 px-4 font-semibold no-underline hover:no-underline text-inherit active:text-inherit">
|
||||||
Learning
|
Learning
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
<label class="block">
|
<label class="block">
|
||||||
<p class="font-bold mb-1">Avatar</p>
|
<p class="font-bold mb-1">Avatar</p>
|
||||||
<p class="text-gray-500">Default profile picture</p>
|
<p class="text-gray-500">Default profile picture</p>
|
||||||
<div class="flex items-center gap-6">
|
<div class="flex flex-col sm:flex-row items-center gap-6">
|
||||||
<% if @user.avatar.attached? %>
|
<% if @user.avatar.attached? %>
|
||||||
<p class="flex-none">
|
<p class="flex-none">
|
||||||
<%= image_tag image_url_for(@user.avatar), class: "h-24 w-24 rounded-lg" %>
|
<%= image_tag image_url_for(@user.avatar), class: "h-24 w-24 rounded-lg" %>
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
name: "E-Mail",
|
name: "E-Mail",
|
||||||
path: admin_settings_service_path("email"),
|
path: admin_settings_service_path("email"),
|
||||||
text_icon: Setting.email_enabled? ? "◉" : "○",
|
text_icon: Setting.email_enabled? ? "◉" : "○",
|
||||||
active: current_page?(admin_settings_services_path(params: { s: "email" })),
|
active: current_page?(admin_settings_service_path("email")),
|
||||||
) %>
|
) %>
|
||||||
<%= render SidenavLinkComponent.new(
|
<%= render SidenavLinkComponent.new(
|
||||||
level: 2,
|
level: 2,
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
<div class="border-b border-gray-200">
|
<div class="border-b border-gray-200">
|
||||||
<nav class="-mb-px flex" aria-label="Tabs">
|
<nav class="-mb-px flex" aria-label="Tabs">
|
||||||
<%= render TabnavLinkComponent.new(
|
<%= render TabnavLinkComponent.new(
|
||||||
name: "Donations", path: contributions_donations_path,
|
name: "Donations",
|
||||||
|
path: contributions_donations_path,
|
||||||
active: current_page?(contributions_donations_path)
|
active: current_page?(contributions_donations_path)
|
||||||
) %>
|
) %>
|
||||||
<%= render TabnavLinkComponent.new(
|
<%= render TabnavLinkComponent.new(
|
||||||
name: "Projects", path: contributions_projects_path,
|
name: render(EditableContentComponent.new(
|
||||||
active: current_page?(contributions_projects_path)
|
context: "contributions/other", key: "title", default: "Other"
|
||||||
|
)),
|
||||||
|
path: contributions_other_path,
|
||||||
|
active: current_page?(contributions_other_path)
|
||||||
) %>
|
) %>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<%= render MainCompactComponent.new do %>
|
<%= render MainCompactComponent.new do %>
|
||||||
<p>
|
<p>
|
||||||
Hey there! You were invited to sign up for a Kosmos account by
|
Hey there! You were invited to sign up for an account by
|
||||||
<strong><%= @invited_by_name %></strong>.
|
<strong><%= @invited_by_name %></strong>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ FileUtils.chdir APP_ROOT do
|
|||||||
|
|
||||||
puts "== Installing dependencies =="
|
puts "== Installing dependencies =="
|
||||||
system("bundle check") || system!("bundle install")
|
system("bundle check") || system!("bundle install")
|
||||||
|
system!("bun install")
|
||||||
|
|
||||||
# puts "\n== Copying sample files =="
|
# puts "\n== Copying sample files =="
|
||||||
# unless File.exist?("config/database.yml")
|
# unless File.exist?("config/database.yml")
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/env ruby
|
|
||||||
APP_ROOT = File.expand_path('..', __dir__)
|
|
||||||
Dir.chdir(APP_ROOT) do
|
|
||||||
begin
|
|
||||||
exec "yarnpkg", *ARGV
|
|
||||||
rescue Errno::ENOENT
|
|
||||||
$stderr.puts "Yarn executable was not detected in the system."
|
|
||||||
$stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
|
|
||||||
exit 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -0,0 +1,288 @@
|
|||||||
|
{
|
||||||
|
"lockfileVersion": 1,
|
||||||
|
"configVersion": 1,
|
||||||
|
"workspaces": {
|
||||||
|
"": {
|
||||||
|
"name": "akkounts",
|
||||||
|
"dependencies": {
|
||||||
|
"@tailwindcss/forms": "^0.5.3",
|
||||||
|
"autoprefixer": "^10.4.13",
|
||||||
|
"postcss": "^8.4.19",
|
||||||
|
"postcss-flexbugs-fixes": "^5.0.2",
|
||||||
|
"postcss-import": "^15.0.1",
|
||||||
|
"postcss-nested": "^6.0.0",
|
||||||
|
"postcss-preset-env": "^7.8.3",
|
||||||
|
"tailwindcss": "^3.4.0",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"packages": {
|
||||||
|
"@alloc/quick-lru": ["@alloc/quick-lru@5.2.0", "", {}, "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-cascade-layers": ["@csstools/postcss-cascade-layers@1.1.1", "", { "dependencies": { "@csstools/selector-specificity": "^2.0.2", "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-color-function": ["@csstools/postcss-color-function@1.1.1", "", { "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-font-format-keywords": ["@csstools/postcss-font-format-keywords@1.0.1", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-hwb-function": ["@csstools/postcss-hwb-function@1.0.2", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-ic-unit": ["@csstools/postcss-ic-unit@1.0.1", "", { "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-is-pseudo-class": ["@csstools/postcss-is-pseudo-class@2.0.7", "", { "dependencies": { "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-nested-calc": ["@csstools/postcss-nested-calc@1.0.0", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-normalize-display-values": ["@csstools/postcss-normalize-display-values@1.0.1", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-oklab-function": ["@csstools/postcss-oklab-function@1.1.1", "", { "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-progressive-custom-properties": ["@csstools/postcss-progressive-custom-properties@1.3.0", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.3" } }, "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-stepped-value-functions": ["@csstools/postcss-stepped-value-functions@1.0.1", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-text-decoration-shorthand": ["@csstools/postcss-text-decoration-shorthand@1.0.0", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-trigonometric-functions": ["@csstools/postcss-trigonometric-functions@1.0.2", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og=="],
|
||||||
|
|
||||||
|
"@csstools/postcss-unset-value": ["@csstools/postcss-unset-value@1.0.2", "", { "peerDependencies": { "postcss": "^8.2" } }, "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g=="],
|
||||||
|
|
||||||
|
"@csstools/selector-specificity": ["@csstools/selector-specificity@2.2.0", "", { "peerDependencies": { "postcss-selector-parser": "^6.0.10" } }, "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw=="],
|
||||||
|
|
||||||
|
"@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.13", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA=="],
|
||||||
|
|
||||||
|
"@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="],
|
||||||
|
|
||||||
|
"@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="],
|
||||||
|
|
||||||
|
"@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.31", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw=="],
|
||||||
|
|
||||||
|
"@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="],
|
||||||
|
|
||||||
|
"@nodelib/fs.stat": ["@nodelib/fs.stat@2.0.5", "", {}, "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="],
|
||||||
|
|
||||||
|
"@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="],
|
||||||
|
|
||||||
|
"@tailwindcss/forms": ["@tailwindcss/forms@0.5.11", "", { "dependencies": { "mini-svg-data-uri": "^1.2.3" }, "peerDependencies": { "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1" } }, "sha512-h9wegbZDPurxG22xZSoWtdzc41/OlNEUQERNqI/0fOwa2aVlWGu7C35E/x6LDyD3lgtztFSSjKZyuVM0hxhbgA=="],
|
||||||
|
|
||||||
|
"any-promise": ["any-promise@1.3.0", "", {}, "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="],
|
||||||
|
|
||||||
|
"anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="],
|
||||||
|
|
||||||
|
"arg": ["arg@5.0.2", "", {}, "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="],
|
||||||
|
|
||||||
|
"autoprefixer": ["autoprefixer@10.5.4", "", { "dependencies": { "browserslist": "^4.28.6", "caniuse-lite": "^1.0.30001806", "fraction.js": "^5.3.4", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": { "autoprefixer": "bin/autoprefixer" } }, "sha512-MaU0U/za7N3r6brxD4YB/l4NSrFzLPlANv6wEuQVaIPlD3L4W9rFcQPbL/EilY9BHhHvhfcz3gInDLrEtWT4EA=="],
|
||||||
|
|
||||||
|
"baseline-browser-mapping": ["baseline-browser-mapping@2.11.13", "", { "bin": { "baseline-browser-mapping": "dist/cli.cjs" } }, "sha512-k9HNuUVMlqVjQ9UHzfPjIqiDbWw7WqT1AoT7GL8VwvF3r0ZfArtgiSPAlmupyNquNgOJHTuH4CKYf8ttMTWBTQ=="],
|
||||||
|
|
||||||
|
"binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="],
|
||||||
|
|
||||||
|
"braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="],
|
||||||
|
|
||||||
|
"browserslist": ["browserslist@4.28.8", "", { "dependencies": { "baseline-browser-mapping": "^2.11.12", "caniuse-lite": "^1.0.30001809", "electron-to-chromium": "^1.5.402", "node-releases": "^2.0.53", "update-browserslist-db": "^1.3.0" }, "bin": { "browserslist": "cli.js" } }, "sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA=="],
|
||||||
|
|
||||||
|
"camelcase-css": ["camelcase-css@2.0.1", "", {}, "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="],
|
||||||
|
|
||||||
|
"caniuse-lite": ["caniuse-lite@1.0.30001809", "", {}, "sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ=="],
|
||||||
|
|
||||||
|
"chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="],
|
||||||
|
|
||||||
|
"commander": ["commander@4.1.1", "", {}, "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="],
|
||||||
|
|
||||||
|
"css-blank-pseudo": ["css-blank-pseudo@3.0.3", "", { "dependencies": { "postcss-selector-parser": "^6.0.9" }, "peerDependencies": { "postcss": "^8.4" }, "bin": { "css-blank-pseudo": "dist/cli.cjs" } }, "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ=="],
|
||||||
|
|
||||||
|
"css-has-pseudo": ["css-has-pseudo@3.0.4", "", { "dependencies": { "postcss-selector-parser": "^6.0.9" }, "peerDependencies": { "postcss": "^8.4" }, "bin": { "css-has-pseudo": "dist/cli.cjs" } }, "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw=="],
|
||||||
|
|
||||||
|
"css-prefers-color-scheme": ["css-prefers-color-scheme@6.0.3", "", { "peerDependencies": { "postcss": "^8.4" }, "bin": { "css-prefers-color-scheme": "dist/cli.cjs" } }, "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA=="],
|
||||||
|
|
||||||
|
"cssdb": ["cssdb@7.11.2", "", {}, "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A=="],
|
||||||
|
|
||||||
|
"cssesc": ["cssesc@3.0.0", "", { "bin": { "cssesc": "bin/cssesc" } }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="],
|
||||||
|
|
||||||
|
"didyoumean": ["didyoumean@1.2.2", "", {}, "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="],
|
||||||
|
|
||||||
|
"dlv": ["dlv@1.1.3", "", {}, "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="],
|
||||||
|
|
||||||
|
"electron-to-chromium": ["electron-to-chromium@1.5.403", "", {}, "sha512-MQsYmdaLzvaCX5j+ZZBr5Fm6uCCnPQcRtlvmvRlWqrXy+BH2O4ffXIAScF+JQznQWB9brWp4lSD9Z4yNmaf2BA=="],
|
||||||
|
|
||||||
|
"es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
|
||||||
|
|
||||||
|
"escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="],
|
||||||
|
|
||||||
|
"fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="],
|
||||||
|
|
||||||
|
"fastq": ["fastq@1.20.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw=="],
|
||||||
|
|
||||||
|
"fdir": ["fdir@6.5.0", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="],
|
||||||
|
|
||||||
|
"fill-range": ["fill-range@7.1.1", "", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="],
|
||||||
|
|
||||||
|
"fraction.js": ["fraction.js@5.3.4", "", {}, "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ=="],
|
||||||
|
|
||||||
|
"fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="],
|
||||||
|
|
||||||
|
"function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
|
||||||
|
|
||||||
|
"glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="],
|
||||||
|
|
||||||
|
"hasown": ["hasown@2.0.4", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A=="],
|
||||||
|
|
||||||
|
"is-binary-path": ["is-binary-path@2.1.0", "", { "dependencies": { "binary-extensions": "^2.0.0" } }, "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="],
|
||||||
|
|
||||||
|
"is-core-module": ["is-core-module@2.16.2", "", { "dependencies": { "hasown": "^2.0.3" } }, "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA=="],
|
||||||
|
|
||||||
|
"is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="],
|
||||||
|
|
||||||
|
"is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="],
|
||||||
|
|
||||||
|
"is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="],
|
||||||
|
|
||||||
|
"jiti": ["jiti@1.21.7", "", { "bin": { "jiti": "bin/jiti.js" } }, "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A=="],
|
||||||
|
|
||||||
|
"lilconfig": ["lilconfig@3.1.3", "", {}, "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="],
|
||||||
|
|
||||||
|
"lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="],
|
||||||
|
|
||||||
|
"merge2": ["merge2@1.4.1", "", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="],
|
||||||
|
|
||||||
|
"micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="],
|
||||||
|
|
||||||
|
"mini-svg-data-uri": ["mini-svg-data-uri@1.4.4", "", { "bin": { "mini-svg-data-uri": "cli.js" } }, "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg=="],
|
||||||
|
|
||||||
|
"mz": ["mz@2.7.0", "", { "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", "thenify-all": "^1.0.0" } }, "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="],
|
||||||
|
|
||||||
|
"nanoid": ["nanoid@3.3.18", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w=="],
|
||||||
|
|
||||||
|
"node-releases": ["node-releases@2.0.53", "", {}, "sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ=="],
|
||||||
|
|
||||||
|
"normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="],
|
||||||
|
|
||||||
|
"object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="],
|
||||||
|
|
||||||
|
"object-hash": ["object-hash@3.0.0", "", {}, "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="],
|
||||||
|
|
||||||
|
"path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="],
|
||||||
|
|
||||||
|
"picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
|
||||||
|
|
||||||
|
"picomatch": ["picomatch@2.3.2", "", {}, "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA=="],
|
||||||
|
|
||||||
|
"pify": ["pify@2.3.0", "", {}, "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="],
|
||||||
|
|
||||||
|
"pirates": ["pirates@4.0.7", "", {}, "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA=="],
|
||||||
|
|
||||||
|
"postcss": ["postcss@8.5.26", "", { "dependencies": { "nanoid": "^3.3.17", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ=="],
|
||||||
|
|
||||||
|
"postcss-attribute-case-insensitive": ["postcss-attribute-case-insensitive@5.0.2", "", { "dependencies": { "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ=="],
|
||||||
|
|
||||||
|
"postcss-clamp": ["postcss-clamp@4.1.0", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.4.6" } }, "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow=="],
|
||||||
|
|
||||||
|
"postcss-color-functional-notation": ["postcss-color-functional-notation@4.2.4", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg=="],
|
||||||
|
|
||||||
|
"postcss-color-hex-alpha": ["postcss-color-hex-alpha@8.0.4", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ=="],
|
||||||
|
|
||||||
|
"postcss-color-rebeccapurple": ["postcss-color-rebeccapurple@7.1.1", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg=="],
|
||||||
|
|
||||||
|
"postcss-custom-media": ["postcss-custom-media@8.0.2", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.3" } }, "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg=="],
|
||||||
|
|
||||||
|
"postcss-custom-properties": ["postcss-custom-properties@12.1.11", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ=="],
|
||||||
|
|
||||||
|
"postcss-custom-selectors": ["postcss-custom-selectors@6.0.3", "", { "dependencies": { "postcss-selector-parser": "^6.0.4" }, "peerDependencies": { "postcss": "^8.3" } }, "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg=="],
|
||||||
|
|
||||||
|
"postcss-dir-pseudo-class": ["postcss-dir-pseudo-class@6.0.5", "", { "dependencies": { "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA=="],
|
||||||
|
|
||||||
|
"postcss-double-position-gradients": ["postcss-double-position-gradients@3.1.2", "", { "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ=="],
|
||||||
|
|
||||||
|
"postcss-env-function": ["postcss-env-function@4.0.6", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA=="],
|
||||||
|
|
||||||
|
"postcss-flexbugs-fixes": ["postcss-flexbugs-fixes@5.0.2", "", { "peerDependencies": { "postcss": "^8.1.4" } }, "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ=="],
|
||||||
|
|
||||||
|
"postcss-focus-visible": ["postcss-focus-visible@6.0.4", "", { "dependencies": { "postcss-selector-parser": "^6.0.9" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw=="],
|
||||||
|
|
||||||
|
"postcss-focus-within": ["postcss-focus-within@5.0.4", "", { "dependencies": { "postcss-selector-parser": "^6.0.9" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ=="],
|
||||||
|
|
||||||
|
"postcss-font-variant": ["postcss-font-variant@5.0.0", "", { "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA=="],
|
||||||
|
|
||||||
|
"postcss-gap-properties": ["postcss-gap-properties@3.0.5", "", { "peerDependencies": { "postcss": "^8.2" } }, "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg=="],
|
||||||
|
|
||||||
|
"postcss-image-set-function": ["postcss-image-set-function@4.0.7", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw=="],
|
||||||
|
|
||||||
|
"postcss-import": ["postcss-import@15.1.0", "", { "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" }, "peerDependencies": { "postcss": "^8.0.0" } }, "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew=="],
|
||||||
|
|
||||||
|
"postcss-initial": ["postcss-initial@4.0.1", "", { "peerDependencies": { "postcss": "^8.0.0" } }, "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ=="],
|
||||||
|
|
||||||
|
"postcss-js": ["postcss-js@4.1.0", "", { "dependencies": { "camelcase-css": "^2.0.1" }, "peerDependencies": { "postcss": "^8.4.21" } }, "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw=="],
|
||||||
|
|
||||||
|
"postcss-lab-function": ["postcss-lab-function@4.2.1", "", { "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w=="],
|
||||||
|
|
||||||
|
"postcss-load-config": ["postcss-load-config@6.0.1", "", { "dependencies": { "lilconfig": "^3.1.1" }, "peerDependencies": { "jiti": ">=1.21.0", "postcss": ">=8.0.9", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["jiti", "postcss", "tsx", "yaml"] }, "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g=="],
|
||||||
|
|
||||||
|
"postcss-logical": ["postcss-logical@5.0.4", "", { "peerDependencies": { "postcss": "^8.4" } }, "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g=="],
|
||||||
|
|
||||||
|
"postcss-media-minmax": ["postcss-media-minmax@5.0.0", "", { "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ=="],
|
||||||
|
|
||||||
|
"postcss-nested": ["postcss-nested@6.2.0", "", { "dependencies": { "postcss-selector-parser": "^6.1.1" }, "peerDependencies": { "postcss": "^8.2.14" } }, "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ=="],
|
||||||
|
|
||||||
|
"postcss-nesting": ["postcss-nesting@10.2.0", "", { "dependencies": { "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA=="],
|
||||||
|
|
||||||
|
"postcss-opacity-percentage": ["postcss-opacity-percentage@1.1.3", "", { "peerDependencies": { "postcss": "^8.2" } }, "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A=="],
|
||||||
|
|
||||||
|
"postcss-overflow-shorthand": ["postcss-overflow-shorthand@3.0.4", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A=="],
|
||||||
|
|
||||||
|
"postcss-page-break": ["postcss-page-break@3.0.4", "", { "peerDependencies": { "postcss": "^8" } }, "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ=="],
|
||||||
|
|
||||||
|
"postcss-place": ["postcss-place@7.0.5", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g=="],
|
||||||
|
|
||||||
|
"postcss-preset-env": ["postcss-preset-env@7.8.3", "", { "dependencies": { "@csstools/postcss-cascade-layers": "^1.1.1", "@csstools/postcss-color-function": "^1.1.1", "@csstools/postcss-font-format-keywords": "^1.0.1", "@csstools/postcss-hwb-function": "^1.0.2", "@csstools/postcss-ic-unit": "^1.0.1", "@csstools/postcss-is-pseudo-class": "^2.0.7", "@csstools/postcss-nested-calc": "^1.0.0", "@csstools/postcss-normalize-display-values": "^1.0.1", "@csstools/postcss-oklab-function": "^1.1.1", "@csstools/postcss-progressive-custom-properties": "^1.3.0", "@csstools/postcss-stepped-value-functions": "^1.0.1", "@csstools/postcss-text-decoration-shorthand": "^1.0.0", "@csstools/postcss-trigonometric-functions": "^1.0.2", "@csstools/postcss-unset-value": "^1.0.2", "autoprefixer": "^10.4.13", "browserslist": "^4.21.4", "css-blank-pseudo": "^3.0.3", "css-has-pseudo": "^3.0.4", "css-prefers-color-scheme": "^6.0.3", "cssdb": "^7.1.0", "postcss-attribute-case-insensitive": "^5.0.2", "postcss-clamp": "^4.1.0", "postcss-color-functional-notation": "^4.2.4", "postcss-color-hex-alpha": "^8.0.4", "postcss-color-rebeccapurple": "^7.1.1", "postcss-custom-media": "^8.0.2", "postcss-custom-properties": "^12.1.10", "postcss-custom-selectors": "^6.0.3", "postcss-dir-pseudo-class": "^6.0.5", "postcss-double-position-gradients": "^3.1.2", "postcss-env-function": "^4.0.6", "postcss-focus-visible": "^6.0.4", "postcss-focus-within": "^5.0.4", "postcss-font-variant": "^5.0.0", "postcss-gap-properties": "^3.0.5", "postcss-image-set-function": "^4.0.7", "postcss-initial": "^4.0.1", "postcss-lab-function": "^4.2.1", "postcss-logical": "^5.0.4", "postcss-media-minmax": "^5.0.0", "postcss-nesting": "^10.2.0", "postcss-opacity-percentage": "^1.1.2", "postcss-overflow-shorthand": "^3.0.4", "postcss-page-break": "^3.0.4", "postcss-place": "^7.0.5", "postcss-pseudo-class-any-link": "^7.1.6", "postcss-replace-overflow-wrap": "^4.0.0", "postcss-selector-not": "^6.0.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag=="],
|
||||||
|
|
||||||
|
"postcss-pseudo-class-any-link": ["postcss-pseudo-class-any-link@7.1.6", "", { "dependencies": { "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w=="],
|
||||||
|
|
||||||
|
"postcss-replace-overflow-wrap": ["postcss-replace-overflow-wrap@4.0.0", "", { "peerDependencies": { "postcss": "^8.0.3" } }, "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw=="],
|
||||||
|
|
||||||
|
"postcss-selector-not": ["postcss-selector-not@6.0.1", "", { "dependencies": { "postcss-selector-parser": "^6.0.10" }, "peerDependencies": { "postcss": "^8.2" } }, "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ=="],
|
||||||
|
|
||||||
|
"postcss-selector-parser": ["postcss-selector-parser@6.1.4", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ=="],
|
||||||
|
|
||||||
|
"postcss-value-parser": ["postcss-value-parser@4.2.0", "", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="],
|
||||||
|
|
||||||
|
"queue-microtask": ["queue-microtask@1.2.3", "", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="],
|
||||||
|
|
||||||
|
"read-cache": ["read-cache@1.0.0", "", { "dependencies": { "pify": "^2.3.0" } }, "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA=="],
|
||||||
|
|
||||||
|
"readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="],
|
||||||
|
|
||||||
|
"resolve": ["resolve@1.22.12", "", { "dependencies": { "es-errors": "^1.3.0", "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA=="],
|
||||||
|
|
||||||
|
"reusify": ["reusify@1.1.0", "", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="],
|
||||||
|
|
||||||
|
"run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="],
|
||||||
|
|
||||||
|
"source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="],
|
||||||
|
|
||||||
|
"sucrase": ["sucrase@3.35.1", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", "lines-and-columns": "^1.1.6", "mz": "^2.7.0", "pirates": "^4.0.1", "tinyglobby": "^0.2.11", "ts-interface-checker": "^0.1.9" }, "bin": { "sucrase": "bin/sucrase", "sucrase-node": "bin/sucrase-node" } }, "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw=="],
|
||||||
|
|
||||||
|
"supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="],
|
||||||
|
|
||||||
|
"tailwindcss": ["tailwindcss@3.4.19", "", { "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.6.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.3.2", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", "jiti": "^1.21.7", "lilconfig": "^3.1.3", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.47", "postcss-import": "^15.1.0", "postcss-js": "^4.0.1", "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", "postcss-nested": "^6.2.0", "postcss-selector-parser": "^6.1.2", "resolve": "^1.22.8", "sucrase": "^3.35.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" } }, "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ=="],
|
||||||
|
|
||||||
|
"thenify": ["thenify@3.3.1", "", { "dependencies": { "any-promise": "^1.0.0" } }, "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw=="],
|
||||||
|
|
||||||
|
"thenify-all": ["thenify-all@1.6.0", "", { "dependencies": { "thenify": ">= 3.1.0 < 4" } }, "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA=="],
|
||||||
|
|
||||||
|
"tinyglobby": ["tinyglobby@0.2.17", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.4" } }, "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g=="],
|
||||||
|
|
||||||
|
"to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="],
|
||||||
|
|
||||||
|
"ts-interface-checker": ["ts-interface-checker@0.1.13", "", {}, "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="],
|
||||||
|
|
||||||
|
"update-browserslist-db": ["update-browserslist-db@1.3.0", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-x/M6q3w4Ybp91CNaS4S69UnliqR3BzRpOT6LWbksjth0S/+jhfaPJsWjt/TewpT8j9eLIojUf5jr29WextHroA=="],
|
||||||
|
|
||||||
|
"util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
|
||||||
|
|
||||||
|
"chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
|
||||||
|
|
||||||
|
"fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
|
||||||
|
|
||||||
|
"tinyglobby/picomatch": ["picomatch@4.0.5", "", {}, "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A=="],
|
||||||
|
}
|
||||||
|
}
|
||||||
+9
-3
@@ -1,10 +1,16 @@
|
|||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
FROM ruby:3.3.0
|
FROM ruby:3.3.12
|
||||||
|
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
RUN apt-get update -qq && apt-get install -y --no-install-recommends curl \
|
RUN apt-get update -qq && apt-get install -y --no-install-recommends curl unzip \
|
||||||
ldap-utils tini libvips
|
ldap-utils tini libvips
|
||||||
|
|
||||||
|
# Node.js — required by GitHub/Gitea Actions runtime for JS-based actions
|
||||||
|
# (actions/checkout, actions/cache, etc.)
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
|
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
|
||||||
RUN apt-get update && apt-get install -y nodejs
|
RUN apt-get update && apt-get install -y nodejs
|
||||||
RUN npm install -g yarn
|
|
||||||
|
# Bun — used by the app for CSS builds
|
||||||
|
RUN curl -fsSL https://bun.sh/install | bash -s -- bun-v1.3.14
|
||||||
|
ENV PATH="/root/.bun/bin:$PATH"
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ Bundler.require(*Rails.groups)
|
|||||||
module Akkounts
|
module Akkounts
|
||||||
class Application < Rails::Application
|
class Application < Rails::Application
|
||||||
# Initialize configuration defaults for originally generated Rails version.
|
# Initialize configuration defaults for originally generated Rails version.
|
||||||
config.load_defaults 8.0
|
config.load_defaults 8.1
|
||||||
|
|
||||||
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
||||||
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ Rails.application.config.assets.version = "1.0"
|
|||||||
|
|
||||||
# Add additional assets to the asset load path.
|
# Add additional assets to the asset load path.
|
||||||
# Rails.application.config.assets.paths << Emoji.images_path
|
# Rails.application.config.assets.paths << Emoji.images_path
|
||||||
# Add Yarn node_modules folder to the asset load path.
|
# Add node_modules folder to the asset load path.
|
||||||
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ require 'securerandom'
|
|||||||
# Many of these configuration options can be set straight in your model.
|
# Many of these configuration options can be set straight in your model.
|
||||||
Devise.setup do |config|
|
Devise.setup do |config|
|
||||||
# Hotwire/Turbo
|
# Hotwire/Turbo
|
||||||
|
config.parent_controller = 'Users::DeviseController'
|
||||||
config.responder.error_status = :unprocessable_entity
|
config.responder.error_status = :unprocessable_entity
|
||||||
config.responder.redirect_status = :see_other
|
config.responder.redirect_status = :see_other
|
||||||
|
|
||||||
@@ -325,9 +326,9 @@ Devise.setup do |config|
|
|||||||
# config.sign_in_after_change_password = true
|
# config.sign_in_after_change_password = true
|
||||||
end
|
end
|
||||||
|
|
||||||
# https://github.com/heartcombo/devise/issues/5644
|
# Turbo-aware responder for Devise controllers
|
||||||
class Devise::SecretKeyFinder
|
ActiveSupport.on_load(:devise_controller) do
|
||||||
def find
|
self.responder = Users::DeviseController::Responder
|
||||||
@application.secret_key_base
|
Users::DeviseController::Responder.error_status = :unprocessable_entity
|
||||||
end
|
Users::DeviseController::Responder.redirect_status = :see_other
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
# See https://alvincrespo.hashnode.dev/rails-8s-lazy-route-loading-devise
|
|
||||||
# TODO remove when Devise is fixed
|
|
||||||
require 'devise'
|
|
||||||
Devise # make sure it's already loaded
|
|
||||||
|
|
||||||
module Devise
|
|
||||||
def self.mappings
|
|
||||||
Rails.application.try(:reload_routes_unless_loaded)
|
|
||||||
@@mappings
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -38,6 +38,8 @@ plugin :tmp_restart
|
|||||||
# Run the Solid Queue supervisor inside of Puma for single-server deployments
|
# Run the Solid Queue supervisor inside of Puma for single-server deployments
|
||||||
plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
|
plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
|
||||||
|
|
||||||
|
force_shutdown_after 25
|
||||||
|
|
||||||
# Specify the PID file. Defaults to tmp/pids/server.pid in development.
|
# Specify the PID file. Defaults to tmp/pids/server.pid in development.
|
||||||
# In other environments, only set the PID file if requested.
|
# In other environments, only set the PID file if requested.
|
||||||
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
|
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
|
||||||
|
|||||||
+5
-5
@@ -15,6 +15,8 @@ Rails.application.routes.draw do
|
|||||||
match 'signup/:step', to: 'signup#steps', as: :signup_steps, via: [:get, :post]
|
match 'signup/:step', to: 'signup#steps', as: :signup_steps, via: [:get, :post]
|
||||||
post 'signup_validate', to: 'signup#validate'
|
post 'signup_validate', to: 'signup#validate'
|
||||||
|
|
||||||
|
get 'privacy', to: 'pages#privacy', as: :privacy_page
|
||||||
|
get 'tos', to: 'pages#tos', as: :tos_page
|
||||||
|
|
||||||
get "users/:username/avatars/:hash", to: "avatars#show", as: :user_avatar
|
get "users/:username/avatars/:hash", to: "avatars#show", as: :user_avatar
|
||||||
|
|
||||||
@@ -25,7 +27,7 @@ Rails.application.routes.draw do
|
|||||||
get 'confirm_btcpay'
|
get 'confirm_btcpay'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
get 'projects', to: 'projects#index'
|
get 'other', to: 'other#index'
|
||||||
end
|
end
|
||||||
|
|
||||||
resources :invitations, only: ['index', 'show', 'create', 'destroy']
|
resources :invitations, only: ['index', 'show', 'create', 'destroy']
|
||||||
@@ -95,12 +97,10 @@ Rails.application.routes.draw do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# post 'users/:username/invitations', to: 'users#create_invitations'
|
resources :donations
|
||||||
|
resources :editable_contents, except: ['destroy']
|
||||||
|
|
||||||
get 'invitations', to: 'invitations#index'
|
get 'invitations', to: 'invitations#index'
|
||||||
|
|
||||||
resources :donations
|
|
||||||
|
|
||||||
get 'lightning', to: 'lightning#index'
|
get 'lightning', to: 'lightning#index'
|
||||||
|
|
||||||
namespace :app_catalog do
|
namespace :app_catalog do
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
class CreateEditableContents < ActiveRecord::Migration[8.0]
|
||||||
|
def change
|
||||||
|
create_table :editable_contents do |t|
|
||||||
|
t.string :context
|
||||||
|
t.string :key
|
||||||
|
t.string :lang, default: "en"
|
||||||
|
t.text :content
|
||||||
|
t.boolean :rich_text, default: false
|
||||||
|
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
+40
-40
@@ -10,44 +10,44 @@
|
|||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema[8.0].define(version: 1) do
|
ActiveRecord::Schema[8.1].define(version: 1) do
|
||||||
create_table "solid_queue_blocked_executions", force: :cascade do |t|
|
create_table "solid_queue_blocked_executions", force: :cascade do |t|
|
||||||
t.bigint "job_id", null: false
|
|
||||||
t.string "queue_name", null: false
|
|
||||||
t.integer "priority", default: 0, null: false
|
|
||||||
t.string "concurrency_key", null: false
|
t.string "concurrency_key", null: false
|
||||||
t.datetime "expires_at", null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.datetime "expires_at", null: false
|
||||||
|
t.bigint "job_id", null: false
|
||||||
|
t.integer "priority", default: 0, null: false
|
||||||
|
t.string "queue_name", null: false
|
||||||
t.index ["concurrency_key", "priority", "job_id"], name: "index_solid_queue_blocked_executions_for_release"
|
t.index ["concurrency_key", "priority", "job_id"], name: "index_solid_queue_blocked_executions_for_release"
|
||||||
t.index ["expires_at", "concurrency_key"], name: "index_solid_queue_blocked_executions_for_maintenance"
|
t.index ["expires_at", "concurrency_key"], name: "index_solid_queue_blocked_executions_for_maintenance"
|
||||||
t.index ["job_id"], name: "index_solid_queue_blocked_executions_on_job_id", unique: true
|
t.index ["job_id"], name: "index_solid_queue_blocked_executions_on_job_id", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_claimed_executions", force: :cascade do |t|
|
create_table "solid_queue_claimed_executions", force: :cascade do |t|
|
||||||
|
t.datetime "created_at", null: false
|
||||||
t.bigint "job_id", null: false
|
t.bigint "job_id", null: false
|
||||||
t.bigint "process_id"
|
t.bigint "process_id"
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.index ["job_id"], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
|
t.index ["job_id"], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
|
||||||
t.index ["process_id", "job_id"], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id"
|
t.index ["process_id", "job_id"], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_failed_executions", force: :cascade do |t|
|
create_table "solid_queue_failed_executions", force: :cascade do |t|
|
||||||
t.bigint "job_id", null: false
|
|
||||||
t.text "error"
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.text "error"
|
||||||
|
t.bigint "job_id", null: false
|
||||||
t.index ["job_id"], name: "index_solid_queue_failed_executions_on_job_id", unique: true
|
t.index ["job_id"], name: "index_solid_queue_failed_executions_on_job_id", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_jobs", force: :cascade do |t|
|
create_table "solid_queue_jobs", force: :cascade do |t|
|
||||||
t.string "queue_name", null: false
|
|
||||||
t.string "class_name", null: false
|
|
||||||
t.text "arguments"
|
|
||||||
t.integer "priority", default: 0, null: false
|
|
||||||
t.string "active_job_id"
|
t.string "active_job_id"
|
||||||
t.datetime "scheduled_at"
|
t.text "arguments"
|
||||||
t.datetime "finished_at"
|
t.string "class_name", null: false
|
||||||
t.string "concurrency_key"
|
t.string "concurrency_key"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.datetime "finished_at"
|
||||||
|
t.integer "priority", default: 0, null: false
|
||||||
|
t.string "queue_name", null: false
|
||||||
|
t.datetime "scheduled_at"
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.index ["active_job_id"], name: "index_solid_queue_jobs_on_active_job_id"
|
t.index ["active_job_id"], name: "index_solid_queue_jobs_on_active_job_id"
|
||||||
t.index ["class_name"], name: "index_solid_queue_jobs_on_class_name"
|
t.index ["class_name"], name: "index_solid_queue_jobs_on_class_name"
|
||||||
@@ -57,76 +57,76 @@ ActiveRecord::Schema[8.0].define(version: 1) do
|
|||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_pauses", force: :cascade do |t|
|
create_table "solid_queue_pauses", force: :cascade do |t|
|
||||||
t.string "queue_name", null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.string "queue_name", null: false
|
||||||
t.index ["queue_name"], name: "index_solid_queue_pauses_on_queue_name", unique: true
|
t.index ["queue_name"], name: "index_solid_queue_pauses_on_queue_name", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_processes", force: :cascade do |t|
|
create_table "solid_queue_processes", force: :cascade do |t|
|
||||||
|
t.datetime "created_at", null: false
|
||||||
|
t.string "hostname"
|
||||||
t.string "kind", null: false
|
t.string "kind", null: false
|
||||||
t.datetime "last_heartbeat_at", null: false
|
t.datetime "last_heartbeat_at", null: false
|
||||||
t.bigint "supervisor_id"
|
|
||||||
t.integer "pid", null: false
|
|
||||||
t.string "hostname"
|
|
||||||
t.text "metadata"
|
t.text "metadata"
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.string "name", null: false
|
t.string "name", null: false
|
||||||
|
t.integer "pid", null: false
|
||||||
|
t.bigint "supervisor_id"
|
||||||
t.index ["last_heartbeat_at"], name: "index_solid_queue_processes_on_last_heartbeat_at"
|
t.index ["last_heartbeat_at"], name: "index_solid_queue_processes_on_last_heartbeat_at"
|
||||||
t.index ["name", "supervisor_id"], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true
|
t.index ["name", "supervisor_id"], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true
|
||||||
t.index ["supervisor_id"], name: "index_solid_queue_processes_on_supervisor_id"
|
t.index ["supervisor_id"], name: "index_solid_queue_processes_on_supervisor_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_ready_executions", force: :cascade do |t|
|
create_table "solid_queue_ready_executions", force: :cascade do |t|
|
||||||
t.bigint "job_id", null: false
|
|
||||||
t.string "queue_name", null: false
|
|
||||||
t.integer "priority", default: 0, null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.bigint "job_id", null: false
|
||||||
|
t.integer "priority", default: 0, null: false
|
||||||
|
t.string "queue_name", null: false
|
||||||
t.index ["job_id"], name: "index_solid_queue_ready_executions_on_job_id", unique: true
|
t.index ["job_id"], name: "index_solid_queue_ready_executions_on_job_id", unique: true
|
||||||
t.index ["priority", "job_id"], name: "index_solid_queue_poll_all"
|
t.index ["priority", "job_id"], name: "index_solid_queue_poll_all"
|
||||||
t.index ["queue_name", "priority", "job_id"], name: "index_solid_queue_poll_by_queue"
|
t.index ["queue_name", "priority", "job_id"], name: "index_solid_queue_poll_by_queue"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_recurring_executions", force: :cascade do |t|
|
create_table "solid_queue_recurring_executions", force: :cascade do |t|
|
||||||
t.bigint "job_id", null: false
|
|
||||||
t.string "task_key", null: false
|
|
||||||
t.datetime "run_at", null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.bigint "job_id", null: false
|
||||||
|
t.datetime "run_at", null: false
|
||||||
|
t.string "task_key", null: false
|
||||||
t.index ["job_id"], name: "index_solid_queue_recurring_executions_on_job_id", unique: true
|
t.index ["job_id"], name: "index_solid_queue_recurring_executions_on_job_id", unique: true
|
||||||
t.index ["task_key", "run_at"], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
|
t.index ["task_key", "run_at"], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_recurring_tasks", force: :cascade do |t|
|
create_table "solid_queue_recurring_tasks", force: :cascade do |t|
|
||||||
t.string "key", null: false
|
|
||||||
t.string "schedule", null: false
|
|
||||||
t.string "command", limit: 2048
|
|
||||||
t.string "class_name"
|
|
||||||
t.text "arguments"
|
t.text "arguments"
|
||||||
t.string "queue_name"
|
t.string "class_name"
|
||||||
t.integer "priority", default: 0
|
t.string "command", limit: 2048
|
||||||
t.boolean "static", default: true, null: false
|
|
||||||
t.text "description"
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.text "description"
|
||||||
|
t.string "key", null: false
|
||||||
|
t.integer "priority", default: 0
|
||||||
|
t.string "queue_name"
|
||||||
|
t.string "schedule", null: false
|
||||||
|
t.boolean "static", default: true, null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.index ["key"], name: "index_solid_queue_recurring_tasks_on_key", unique: true
|
t.index ["key"], name: "index_solid_queue_recurring_tasks_on_key", unique: true
|
||||||
t.index ["static"], name: "index_solid_queue_recurring_tasks_on_static"
|
t.index ["static"], name: "index_solid_queue_recurring_tasks_on_static"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_scheduled_executions", force: :cascade do |t|
|
create_table "solid_queue_scheduled_executions", force: :cascade do |t|
|
||||||
t.bigint "job_id", null: false
|
|
||||||
t.string "queue_name", null: false
|
|
||||||
t.integer "priority", default: 0, null: false
|
|
||||||
t.datetime "scheduled_at", null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.bigint "job_id", null: false
|
||||||
|
t.integer "priority", default: 0, null: false
|
||||||
|
t.string "queue_name", null: false
|
||||||
|
t.datetime "scheduled_at", null: false
|
||||||
t.index ["job_id"], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true
|
t.index ["job_id"], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true
|
||||||
t.index ["scheduled_at", "priority", "job_id"], name: "index_solid_queue_dispatch_all"
|
t.index ["scheduled_at", "priority", "job_id"], name: "index_solid_queue_dispatch_all"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_semaphores", force: :cascade do |t|
|
create_table "solid_queue_semaphores", force: :cascade do |t|
|
||||||
t.string "key", null: false
|
|
||||||
t.integer "value", default: 1, null: false
|
|
||||||
t.datetime "expires_at", null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.datetime "expires_at", null: false
|
||||||
|
t.string "key", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
|
t.integer "value", default: 1, null: false
|
||||||
t.index ["expires_at"], name: "index_solid_queue_semaphores_on_expires_at"
|
t.index ["expires_at"], name: "index_solid_queue_semaphores_on_expires_at"
|
||||||
t.index ["key", "value"], name: "index_solid_queue_semaphores_on_key_and_value"
|
t.index ["key", "value"], name: "index_solid_queue_semaphores_on_key_and_value"
|
||||||
t.index ["key"], name: "index_solid_queue_semaphores_on_key", unique: true
|
t.index ["key"], name: "index_solid_queue_semaphores_on_key", unique: true
|
||||||
|
|||||||
+65
-55
@@ -10,26 +10,26 @@
|
|||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema[8.0].define(version: 2025_05_27_113805) do
|
ActiveRecord::Schema[8.1].define(version: 2025_05_28_092931) do
|
||||||
create_table "active_storage_attachments", force: :cascade do |t|
|
create_table "active_storage_attachments", force: :cascade do |t|
|
||||||
t.string "name", null: false
|
|
||||||
t.string "record_type", null: false
|
|
||||||
t.bigint "record_id", null: false
|
|
||||||
t.bigint "blob_id", null: false
|
t.bigint "blob_id", null: false
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.string "name", null: false
|
||||||
|
t.bigint "record_id", null: false
|
||||||
|
t.string "record_type", null: false
|
||||||
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
|
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
|
||||||
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
|
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "active_storage_blobs", force: :cascade do |t|
|
create_table "active_storage_blobs", force: :cascade do |t|
|
||||||
t.string "key", null: false
|
|
||||||
t.string "filename", null: false
|
|
||||||
t.string "content_type"
|
|
||||||
t.text "metadata"
|
|
||||||
t.string "service_name", null: false
|
|
||||||
t.bigint "byte_size", null: false
|
t.bigint "byte_size", null: false
|
||||||
t.string "checksum"
|
t.string "checksum"
|
||||||
|
t.string "content_type"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.string "filename", null: false
|
||||||
|
t.string "key", null: false
|
||||||
|
t.text "metadata"
|
||||||
|
t.string "service_name", null: false
|
||||||
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -40,67 +40,77 @@ ActiveRecord::Schema[8.0].define(version: 2025_05_27_113805) do
|
|||||||
end
|
end
|
||||||
|
|
||||||
create_table "app_catalog_web_apps", force: :cascade do |t|
|
create_table "app_catalog_web_apps", force: :cascade do |t|
|
||||||
t.string "url"
|
|
||||||
t.string "name"
|
|
||||||
t.text "metadata"
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.text "metadata"
|
||||||
|
t.string "name"
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
|
t.string "url"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "donations", force: :cascade do |t|
|
create_table "donations", force: :cascade do |t|
|
||||||
t.integer "user_id"
|
|
||||||
t.integer "amount_sats"
|
t.integer "amount_sats"
|
||||||
t.integer "fiat_amount"
|
|
||||||
t.string "public_name"
|
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.datetime "updated_at", null: false
|
|
||||||
t.datetime "paid_at", precision: nil
|
|
||||||
t.string "fiat_currency", default: "USD"
|
|
||||||
t.string "donation_method"
|
|
||||||
t.string "payment_method"
|
|
||||||
t.string "btcpay_invoice_id"
|
t.string "btcpay_invoice_id"
|
||||||
|
t.datetime "created_at", null: false
|
||||||
|
t.string "donation_method"
|
||||||
|
t.integer "fiat_amount"
|
||||||
|
t.string "fiat_currency", default: "USD"
|
||||||
|
t.datetime "paid_at", precision: nil
|
||||||
|
t.string "payment_method"
|
||||||
t.string "payment_status"
|
t.string "payment_status"
|
||||||
|
t.string "public_name"
|
||||||
|
t.datetime "updated_at", null: false
|
||||||
|
t.integer "user_id"
|
||||||
t.index ["payment_status"], name: "index_donations_on_payment_status"
|
t.index ["payment_status"], name: "index_donations_on_payment_status"
|
||||||
t.index ["user_id"], name: "index_donations_on_user_id"
|
t.index ["user_id"], name: "index_donations_on_user_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "flipper_features", force: :cascade do |t|
|
create_table "editable_contents", force: :cascade do |t|
|
||||||
t.string "key", null: false
|
t.text "content"
|
||||||
|
t.string "context"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.string "key"
|
||||||
|
t.string "lang", default: "en"
|
||||||
|
t.boolean "rich_text", default: false
|
||||||
|
t.datetime "updated_at", null: false
|
||||||
|
end
|
||||||
|
|
||||||
|
create_table "flipper_features", force: :cascade do |t|
|
||||||
|
t.datetime "created_at", null: false
|
||||||
|
t.string "key", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.index ["key"], name: "index_flipper_features_on_key", unique: true
|
t.index ["key"], name: "index_flipper_features_on_key", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "flipper_gates", force: :cascade do |t|
|
create_table "flipper_gates", force: :cascade do |t|
|
||||||
|
t.datetime "created_at", null: false
|
||||||
t.string "feature_key", null: false
|
t.string "feature_key", null: false
|
||||||
t.string "key", null: false
|
t.string "key", null: false
|
||||||
t.text "value"
|
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
|
t.text "value"
|
||||||
t.index ["feature_key", "key", "value"], name: "index_flipper_gates_on_feature_key_and_key_and_value", unique: true
|
t.index ["feature_key", "key", "value"], name: "index_flipper_gates_on_feature_key_and_key_and_value", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "invitations", force: :cascade do |t|
|
create_table "invitations", force: :cascade do |t|
|
||||||
t.string "token"
|
|
||||||
t.integer "user_id"
|
|
||||||
t.integer "invited_user_id"
|
|
||||||
t.datetime "used_at", precision: nil
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.integer "invited_user_id"
|
||||||
|
t.string "token"
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
|
t.datetime "used_at", precision: nil
|
||||||
|
t.integer "user_id"
|
||||||
t.index ["invited_user_id"], name: "index_invitations_on_invited_user_id"
|
t.index ["invited_user_id"], name: "index_invitations_on_invited_user_id"
|
||||||
t.index ["user_id"], name: "index_invitations_on_user_id"
|
t.index ["user_id"], name: "index_invitations_on_user_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "remote_storage_authorizations", force: :cascade do |t|
|
create_table "remote_storage_authorizations", force: :cascade do |t|
|
||||||
t.integer "user_id", null: false
|
|
||||||
t.string "token"
|
|
||||||
t.text "permissions", default: "--- []\n"
|
|
||||||
t.string "client_id"
|
|
||||||
t.string "redirect_uri"
|
|
||||||
t.string "app_name"
|
t.string "app_name"
|
||||||
t.datetime "expire_at"
|
t.string "client_id"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
t.datetime "expire_at"
|
||||||
|
t.text "permissions", default: "--- []\n"
|
||||||
|
t.string "redirect_uri"
|
||||||
|
t.string "token"
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
|
t.integer "user_id", null: false
|
||||||
t.integer "web_app_id"
|
t.integer "web_app_id"
|
||||||
t.index ["permissions"], name: "index_remote_storage_authorizations_on_permissions"
|
t.index ["permissions"], name: "index_remote_storage_authorizations_on_permissions"
|
||||||
t.index ["user_id"], name: "index_remote_storage_authorizations_on_user_id"
|
t.index ["user_id"], name: "index_remote_storage_authorizations_on_user_id"
|
||||||
@@ -108,45 +118,45 @@ ActiveRecord::Schema[8.0].define(version: 2025_05_27_113805) do
|
|||||||
end
|
end
|
||||||
|
|
||||||
create_table "settings", force: :cascade do |t|
|
create_table "settings", force: :cascade do |t|
|
||||||
t.string "var", null: false
|
|
||||||
t.text "value"
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
|
t.text "value"
|
||||||
|
t.string "var", null: false
|
||||||
t.index ["var"], name: "index_settings_on_var", unique: true
|
t.index ["var"], name: "index_settings_on_var", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "users", force: :cascade do |t|
|
create_table "users", force: :cascade do |t|
|
||||||
t.string "cn"
|
t.string "cn"
|
||||||
t.string "ou"
|
t.datetime "confirmation_sent_at", precision: nil
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.datetime "updated_at", null: false
|
|
||||||
t.string "email", default: "", null: false
|
|
||||||
t.string "reset_password_token"
|
|
||||||
t.datetime "reset_password_sent_at", precision: nil
|
|
||||||
t.string "confirmation_token"
|
t.string "confirmation_token"
|
||||||
t.datetime "confirmed_at", precision: nil
|
t.datetime "confirmed_at", precision: nil
|
||||||
t.datetime "confirmation_sent_at", precision: nil
|
t.datetime "created_at", null: false
|
||||||
t.string "unconfirmed_email"
|
t.string "email", default: "", null: false
|
||||||
|
t.text "lndhub_password"
|
||||||
|
t.string "lndhub_username"
|
||||||
|
t.bigint "mastodon_id"
|
||||||
|
t.string "ou"
|
||||||
|
t.string "pgp_fpr"
|
||||||
|
t.text "preferences"
|
||||||
t.datetime "remember_created_at"
|
t.datetime "remember_created_at"
|
||||||
t.string "remember_token"
|
t.string "remember_token"
|
||||||
t.text "preferences"
|
t.datetime "reset_password_sent_at", precision: nil
|
||||||
t.string "pgp_fpr"
|
t.string "reset_password_token"
|
||||||
t.string "lndhub_username"
|
t.string "unconfirmed_email"
|
||||||
t.text "lndhub_password"
|
t.datetime "updated_at", null: false
|
||||||
t.bigint "mastodon_id"
|
|
||||||
t.index ["email"], name: "index_users_on_email", unique: true
|
t.index ["email"], name: "index_users_on_email", unique: true
|
||||||
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "zaps", force: :cascade do |t|
|
create_table "zaps", force: :cascade do |t|
|
||||||
t.integer "user_id", null: false
|
|
||||||
t.json "request"
|
|
||||||
t.json "receipt"
|
|
||||||
t.text "payment_request"
|
|
||||||
t.bigint "amount"
|
t.bigint "amount"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.text "payment_request"
|
||||||
|
t.json "receipt"
|
||||||
|
t.json "request"
|
||||||
t.datetime "settled_at"
|
t.datetime "settled_at"
|
||||||
|
t.datetime "updated_at", null: false
|
||||||
|
t.integer "user_id", null: false
|
||||||
t.index ["user_id"], name: "index_zaps_on_user_id"
|
t.index ["user_id"], name: "index_zaps_on_user_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
//bin/true; exec deno run --unstable-kv -A "$0" "$@"
|
//bin/true; exec deno run --unstable-kv -A "$0" "$@"
|
||||||
import {
|
import {
|
||||||
AntiDuplicationPolicy,
|
AntiDuplicationPolicy,
|
||||||
|
AnyPolicy,
|
||||||
|
FiltersPolicy,
|
||||||
HellthreadPolicy,
|
HellthreadPolicy,
|
||||||
PipePolicy,
|
PipePolicy,
|
||||||
readStdin,
|
readStdin,
|
||||||
@@ -22,10 +24,15 @@ const ldapConfig: LdapConfig = {
|
|||||||
whitelistPubkeys: Deno.env.get("WHITELIST_PUBKEYS")?.split(',')
|
whitelistPubkeys: Deno.env.get("WHITELIST_PUBKEYS")?.split(',')
|
||||||
}
|
}
|
||||||
|
|
||||||
const policy = new PipePolicy([
|
const policy = new AnyPolicy([
|
||||||
new HellthreadPolicy({ limit: 10 }),
|
// Allow NIP-46 (kind 24133) ephemeral events from anyone
|
||||||
new AntiDuplicationPolicy({ kv: await Deno.openKv(), expireIn: 60000, minLength: 50 }),
|
new FiltersPolicy([{ kinds: [24133] }]),
|
||||||
new LdapPolicy(ldapConfig)
|
// All other events go through this pipeline
|
||||||
|
new PipePolicy([
|
||||||
|
new HellthreadPolicy({ limit: 10 }),
|
||||||
|
new AntiDuplicationPolicy({ kv: await Deno.openKv(), expireIn: 60000, minLength: 50 }),
|
||||||
|
new LdapPolicy(ldapConfig)
|
||||||
|
])
|
||||||
]);
|
]);
|
||||||
|
|
||||||
await strfry(policy);
|
await strfry(policy);
|
||||||
|
|||||||
+4
-4
@@ -9,11 +9,11 @@
|
|||||||
"postcss-import": "^15.0.1",
|
"postcss-import": "^15.0.1",
|
||||||
"postcss-nested": "^6.0.0",
|
"postcss-nested": "^6.0.0",
|
||||||
"postcss-preset-env": "^7.8.3",
|
"postcss-preset-env": "^7.8.3",
|
||||||
"tailwindcss": "^3.2.4"
|
"tailwindcss": "^3.4.0"
|
||||||
},
|
},
|
||||||
"version": "0.10.0",
|
"version": "0.11.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build:css:tailwind": "tailwindcss --postcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css",
|
"build:css:tailwind": "bun ./node_modules/tailwindcss/lib/cli.js --postcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css",
|
||||||
"build:css": "yarn run build:css:tailwind"
|
"build:css": "bun run build:css:tailwind"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -222,6 +222,19 @@ RSpec.describe Rs::OauthController, type: :controller do
|
|||||||
|
|
||||||
expect(response).to redirect_to(new_user_session_path(cn: user.cn, ou: user.ou))
|
expect(response).to redirect_to(new_user_session_path(cn: user.cn, ou: user.ou))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "without a redirect_uri" do
|
||||||
|
it "returns a 400 without storing the return location" do
|
||||||
|
get :new, params: {
|
||||||
|
username: user.cn,
|
||||||
|
scope: "documents,photos",
|
||||||
|
client_id: "https://example.com"
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(response.response_code).to eq(400)
|
||||||
|
expect(session[:user_return_to]).to be_nil
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "root access" do
|
describe "root access" do
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ RSpec.describe "Admin: User management", type: :feature do
|
|||||||
.and_return({ uid: user.cn, mail: user.email, display_name: "Freddy" })
|
.and_return({ uid: user.cn, mail: user.email, display_name: "Freddy" })
|
||||||
allow_any_instance_of(LdapManager::FetchAvatar).to receive(:call)
|
allow_any_instance_of(LdapManager::FetchAvatar).to receive(:call)
|
||||||
.and_return(nil)
|
.and_return(nil)
|
||||||
|
allow_any_instance_of(LdapService).to receive(:search_users)
|
||||||
|
.and_return([])
|
||||||
|
|
||||||
login_as admin, :scope => :user
|
login_as admin, :scope => :user
|
||||||
end
|
end
|
||||||
@@ -43,6 +45,30 @@ RSpec.describe "Admin: User management", type: :feature do
|
|||||||
expect(user.invitations.count).to eq(5)
|
expect(user.invitations.count).to eq(5)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "User index page" do
|
||||||
|
it "lists all users" do
|
||||||
|
visit admin_users_path
|
||||||
|
|
||||||
|
expect(page).to have_link "jimmy"
|
||||||
|
expect(page).to have_link "alfred"
|
||||||
|
end
|
||||||
|
|
||||||
|
scenario 'Filter users by username' do
|
||||||
|
visit admin_users_path
|
||||||
|
|
||||||
|
fill_in "username", with: "alf"
|
||||||
|
click_button "Filter"
|
||||||
|
|
||||||
|
expect(page).to have_link "alfred"
|
||||||
|
expect(page).to have_no_link "jimmy"
|
||||||
|
|
||||||
|
click_link "Remove filter"
|
||||||
|
|
||||||
|
expect(page).to have_link "jimmy"
|
||||||
|
expect(page).to have_link "alfred"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
scenario 'Remove invitations from account' do
|
scenario 'Remove invitations from account' do
|
||||||
3.times { Invitation.create(user: user) }
|
3.times { Invitation.create(user: user) }
|
||||||
expect(user.invitations.count).to eq(3)
|
expect(user.invitations.count).to eq(3)
|
||||||
|
|||||||
@@ -50,5 +50,26 @@ RSpec.describe 'Password reset', type: :feature do
|
|||||||
expect(page).to have_content 'Your password has been changed successfully'
|
expect(page).to have_content 'Your password has been changed successfully'
|
||||||
expect(user.reload.reset_password_token).to be_nil
|
expect(user.reload.reset_password_token).to be_nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
scenario "Ignores a stale return location left by an rs/oauth request" do
|
||||||
|
expect(Devise::LDAP::Adapter).to receive(:update_password)
|
||||||
|
.with(user.cn, 'catch me if you can').and_return(true)
|
||||||
|
|
||||||
|
# Simulate an earlier rs/oauth authorization request that stored a
|
||||||
|
# return URL in the session (the original cause of issue #235).
|
||||||
|
visit new_rs_oauth_path(user.cn,
|
||||||
|
redirect_uri: "https://example.com",
|
||||||
|
client_id: "https://example.com",
|
||||||
|
scope: "documents")
|
||||||
|
|
||||||
|
visit edit_user_password_path(reset_password_token: token)
|
||||||
|
fill_in :user_password, with: 'catch me if you can'
|
||||||
|
fill_in :user_password_confirmation, with: 'catch me if you can'
|
||||||
|
click_button 'Change my password'
|
||||||
|
|
||||||
|
expect(page).to have_content 'Your password has been changed successfully'
|
||||||
|
expect(page).to have_current_path(root_path)
|
||||||
|
expect(page).not_to have_content 'Bad request'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe "Devise password reset", type: :request do
|
||||||
|
let(:user) { create :user }
|
||||||
|
|
||||||
|
describe "PUT /users/password" do
|
||||||
|
let(:token) { user.send(:set_reset_password_token) }
|
||||||
|
|
||||||
|
before do
|
||||||
|
allow(Devise::LDAP::Adapter).to receive(:update_password).and_return(true)
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a stale stored return location from an rs/oauth request" do
|
||||||
|
before do
|
||||||
|
get new_rs_oauth_url(user.cn,
|
||||||
|
redirect_uri: "https://example.com",
|
||||||
|
client_id: "https://example.com",
|
||||||
|
scope: "documents")
|
||||||
|
expect(session[:user_return_to]).to be_present
|
||||||
|
end
|
||||||
|
|
||||||
|
it "redirects to the dashboard instead of the stored return URL" do
|
||||||
|
put user_password_path, params: {
|
||||||
|
user: {
|
||||||
|
reset_password_token: token,
|
||||||
|
password: "a brand new password",
|
||||||
|
password_confirmation: "a brand new password"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(response).to redirect_to(root_path)
|
||||||
|
expect(session[:user_return_to]).to be_nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
require 'rails_helper'
|
||||||
|
require 'webmock/rspec'
|
||||||
|
require 'digest'
|
||||||
|
|
||||||
|
RSpec.describe EjabberdManager::SetAvatar, type: :model do
|
||||||
|
let(:user) { create :user, cn: "willherschel", ou: "kosmos.org" }
|
||||||
|
let(:fixture_path) { Rails.root.join("spec/fixtures/files/bender.png") }
|
||||||
|
let(:img_data) do
|
||||||
|
ImageProcessing::Vips
|
||||||
|
.source(File.open(fixture_path))
|
||||||
|
.resize_to_fill(256, 256)
|
||||||
|
.convert("png")
|
||||||
|
.call.read
|
||||||
|
end
|
||||||
|
let(:sha1_hash) { Digest::SHA1.hexdigest(img_data) }
|
||||||
|
let(:base64_data) { Base64.strict_encode64(img_data) }
|
||||||
|
|
||||||
|
before do
|
||||||
|
ActiveStorage::Blob.create_and_upload!(
|
||||||
|
io: File.open(fixture_path),
|
||||||
|
filename: "bender.png",
|
||||||
|
content_type: "image/png"
|
||||||
|
).tap { |blob| user.avatar.attach(blob) }
|
||||||
|
end
|
||||||
|
|
||||||
|
def stub_send_stanza_ok
|
||||||
|
stub_request(:post, "http://xmpp.example.com/api/send_stanza")
|
||||||
|
.to_return(status: 200, body: "", headers: {})
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when an avatar is already set and overwrite is false" do
|
||||||
|
before do
|
||||||
|
allow(EjabberdManager::GetAvatar).to receive(:call).with(user: user).and_return({ img_base64: "abc", content_type: "image/png" })
|
||||||
|
stub_send_stanza_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
it "does not send any stanzas" do
|
||||||
|
described_class.call(user: user)
|
||||||
|
expect(WebMock).not_to have_requested(:post, "http://xmpp.example.com/api/send_stanza")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when no avatar is set yet" do
|
||||||
|
let(:sent_stanzas) { [] }
|
||||||
|
|
||||||
|
before do
|
||||||
|
allow(EjabberdManager::GetAvatar).to receive(:call).with(user: user).and_return(nil)
|
||||||
|
stub_request(:post, "http://xmpp.example.com/api/send_stanza")
|
||||||
|
.to_return(status: 200, body: "", headers: {})
|
||||||
|
end
|
||||||
|
|
||||||
|
it "publishes the XEP-0084 data and metadata stanzas" do
|
||||||
|
service = described_class.new(user: user)
|
||||||
|
allow(service).to receive(:send_stanza) do |payload|
|
||||||
|
sent_stanzas << payload[:stanza]
|
||||||
|
double(status: 200)
|
||||||
|
end
|
||||||
|
|
||||||
|
service.call
|
||||||
|
|
||||||
|
expect(sent_stanzas.length).to eq(2)
|
||||||
|
|
||||||
|
data_stanza = sent_stanzas.find { |s| s.include?("urn:xmpp:avatar:data") }
|
||||||
|
meta_stanza = sent_stanzas.find { |s| s.include?("urn:xmpp:avatar:metadata") }
|
||||||
|
|
||||||
|
expect(data_stanza).to include("from='willherschel@kosmos.org'")
|
||||||
|
expect(data_stanza).to include("<item id='#{sha1_hash}'>")
|
||||||
|
expect(data_stanza).to include("<data xmlns='urn:xmpp:avatar:data'>#{base64_data}</data>")
|
||||||
|
|
||||||
|
expect(meta_stanza).to include("from='willherschel@kosmos.org'")
|
||||||
|
expect(meta_stanza).to include("<item id='#{sha1_hash}'>")
|
||||||
|
expect(meta_stanza).to include("bytes='#{img_data.size}'")
|
||||||
|
expect(meta_stanza).to include("id='#{sha1_hash}'")
|
||||||
|
expect(meta_stanza).to include("type='image/png'")
|
||||||
|
expect(meta_stanza).to include("height='256'")
|
||||||
|
expect(meta_stanza).to include("width='256'")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when overwrite is true" do
|
||||||
|
before do
|
||||||
|
allow(EjabberdManager::GetAvatar).to receive(:call).and_return({ img_base64: "abc", content_type: "image/png" })
|
||||||
|
stub_send_stanza_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
it "does not check for an existing avatar and sends stanzas" do
|
||||||
|
described_class.call(user: user, overwrite: true)
|
||||||
|
expect(EjabberdManager::GetAvatar).not_to have_received(:call)
|
||||||
|
expect(WebMock).to have_requested(:post, "http://xmpp.example.com/api/send_stanza").twice
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when the ejabberd API returns a non-200 status" do
|
||||||
|
before do
|
||||||
|
allow(EjabberdManager::GetAvatar).to receive(:call).with(user: user).and_return(nil)
|
||||||
|
stub_request(:post, "http://xmpp.example.com/api/send_stanza")
|
||||||
|
.to_return(status: 500, body: "error", headers: {})
|
||||||
|
end
|
||||||
|
|
||||||
|
it "raises" do
|
||||||
|
expect { described_class.call(user: user) }.to raise_error(RuntimeError)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -14,11 +14,6 @@
|
|||||||
#
|
#
|
||||||
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
||||||
RSpec.configure do |config|
|
RSpec.configure do |config|
|
||||||
# TODO Remove when Devise fixes https://github.com/heartcombo/devise/issues/5705
|
|
||||||
config.before(:each, type: :controller) do
|
|
||||||
Rails.application.reload_routes_unless_loaded
|
|
||||||
end
|
|
||||||
|
|
||||||
# rspec-expectations config goes here. You can use an alternate
|
# rspec-expectations config goes here. You can use an alternate
|
||||||
# assertion/expectation library such as wrong or the stdlib/minitest
|
# assertion/expectation library such as wrong or the stdlib/minitest
|
||||||
# assertions if you prefer.
|
# assertions if you prefer.
|
||||||
|
|||||||
@@ -1,912 +0,0 @@
|
|||||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
# yarn lockfile v1
|
|
||||||
|
|
||||||
|
|
||||||
"@csstools/postcss-cascade-layers@^1.1.1":
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz"
|
|
||||||
integrity sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/selector-specificity" "^2.0.2"
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
"@csstools/postcss-color-function@^1.1.1":
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz"
|
|
||||||
integrity sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/postcss-progressive-custom-properties" "^1.1.0"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-font-format-keywords@^1.0.1":
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz"
|
|
||||||
integrity sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-hwb-function@^1.0.2":
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz"
|
|
||||||
integrity sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-ic-unit@^1.0.1":
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz"
|
|
||||||
integrity sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/postcss-progressive-custom-properties" "^1.1.0"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-is-pseudo-class@^2.0.7":
|
|
||||||
version "2.0.7"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz"
|
|
||||||
integrity sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/selector-specificity" "^2.0.0"
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
"@csstools/postcss-nested-calc@^1.0.0":
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz"
|
|
||||||
integrity sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-normalize-display-values@^1.0.1":
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz"
|
|
||||||
integrity sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-oklab-function@^1.1.1":
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz"
|
|
||||||
integrity sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/postcss-progressive-custom-properties" "^1.1.0"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-progressive-custom-properties@^1.1.0", "@csstools/postcss-progressive-custom-properties@^1.3.0":
|
|
||||||
version "1.3.0"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz"
|
|
||||||
integrity sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-stepped-value-functions@^1.0.1":
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz"
|
|
||||||
integrity sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-text-decoration-shorthand@^1.0.0":
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz"
|
|
||||||
integrity sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-trigonometric-functions@^1.0.2":
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz"
|
|
||||||
integrity sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
"@csstools/postcss-unset-value@^1.0.2":
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz"
|
|
||||||
integrity sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==
|
|
||||||
|
|
||||||
"@csstools/selector-specificity@^2.0.0", "@csstools/selector-specificity@^2.0.2":
|
|
||||||
version "2.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.0.2.tgz"
|
|
||||||
integrity sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==
|
|
||||||
|
|
||||||
"@nodelib/fs.scandir@2.1.5":
|
|
||||||
version "2.1.5"
|
|
||||||
resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
|
|
||||||
integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
|
|
||||||
dependencies:
|
|
||||||
"@nodelib/fs.stat" "2.0.5"
|
|
||||||
run-parallel "^1.1.9"
|
|
||||||
|
|
||||||
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
|
|
||||||
version "2.0.5"
|
|
||||||
resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
|
|
||||||
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
|
|
||||||
|
|
||||||
"@nodelib/fs.walk@^1.2.3":
|
|
||||||
version "1.2.8"
|
|
||||||
resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
|
|
||||||
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
|
|
||||||
dependencies:
|
|
||||||
"@nodelib/fs.scandir" "2.1.5"
|
|
||||||
fastq "^1.6.0"
|
|
||||||
|
|
||||||
"@tailwindcss/forms@^0.5.3":
|
|
||||||
version "0.5.3"
|
|
||||||
resolved "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.3.tgz"
|
|
||||||
integrity sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==
|
|
||||||
dependencies:
|
|
||||||
mini-svg-data-uri "^1.2.3"
|
|
||||||
|
|
||||||
acorn-node@^1.8.2:
|
|
||||||
version "1.8.2"
|
|
||||||
resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz"
|
|
||||||
integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==
|
|
||||||
dependencies:
|
|
||||||
acorn "^7.0.0"
|
|
||||||
acorn-walk "^7.0.0"
|
|
||||||
xtend "^4.0.2"
|
|
||||||
|
|
||||||
acorn-walk@^7.0.0:
|
|
||||||
version "7.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"
|
|
||||||
integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
|
|
||||||
|
|
||||||
acorn@^7.0.0:
|
|
||||||
version "7.4.1"
|
|
||||||
resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
|
|
||||||
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
|
||||||
|
|
||||||
anymatch@~3.1.2:
|
|
||||||
version "3.1.2"
|
|
||||||
resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
|
|
||||||
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
|
|
||||||
dependencies:
|
|
||||||
normalize-path "^3.0.0"
|
|
||||||
picomatch "^2.0.4"
|
|
||||||
|
|
||||||
arg@^5.0.2:
|
|
||||||
version "5.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz"
|
|
||||||
integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
|
|
||||||
|
|
||||||
autoprefixer@^10.4.13:
|
|
||||||
version "10.4.13"
|
|
||||||
resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz"
|
|
||||||
integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==
|
|
||||||
dependencies:
|
|
||||||
browserslist "^4.21.4"
|
|
||||||
caniuse-lite "^1.0.30001426"
|
|
||||||
fraction.js "^4.2.0"
|
|
||||||
normalize-range "^0.1.2"
|
|
||||||
picocolors "^1.0.0"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
binary-extensions@^2.0.0:
|
|
||||||
version "2.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
|
|
||||||
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
|
|
||||||
|
|
||||||
braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
|
|
||||||
version "3.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
|
|
||||||
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
|
||||||
dependencies:
|
|
||||||
fill-range "^7.0.1"
|
|
||||||
|
|
||||||
browserslist@^4.21.4:
|
|
||||||
version "4.21.4"
|
|
||||||
resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"
|
|
||||||
integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
|
|
||||||
dependencies:
|
|
||||||
caniuse-lite "^1.0.30001400"
|
|
||||||
electron-to-chromium "^1.4.251"
|
|
||||||
node-releases "^2.0.6"
|
|
||||||
update-browserslist-db "^1.0.9"
|
|
||||||
|
|
||||||
camelcase-css@^2.0.1:
|
|
||||||
version "2.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz"
|
|
||||||
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
|
||||||
|
|
||||||
caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001426:
|
|
||||||
version "1.0.30001435"
|
|
||||||
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001435.tgz"
|
|
||||||
integrity sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA==
|
|
||||||
|
|
||||||
chokidar@^3.5.3:
|
|
||||||
version "3.5.3"
|
|
||||||
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
|
|
||||||
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
|
|
||||||
dependencies:
|
|
||||||
anymatch "~3.1.2"
|
|
||||||
braces "~3.0.2"
|
|
||||||
glob-parent "~5.1.2"
|
|
||||||
is-binary-path "~2.1.0"
|
|
||||||
is-glob "~4.0.1"
|
|
||||||
normalize-path "~3.0.0"
|
|
||||||
readdirp "~3.6.0"
|
|
||||||
optionalDependencies:
|
|
||||||
fsevents "~2.3.2"
|
|
||||||
|
|
||||||
color-name@^1.1.4:
|
|
||||||
version "1.1.4"
|
|
||||||
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
|
|
||||||
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
|
||||||
|
|
||||||
css-blank-pseudo@^3.0.3:
|
|
||||||
version "3.0.3"
|
|
||||||
resolved "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz"
|
|
||||||
integrity sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.9"
|
|
||||||
|
|
||||||
css-has-pseudo@^3.0.4:
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz"
|
|
||||||
integrity sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.9"
|
|
||||||
|
|
||||||
css-prefers-color-scheme@^6.0.3:
|
|
||||||
version "6.0.3"
|
|
||||||
resolved "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz"
|
|
||||||
integrity sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==
|
|
||||||
|
|
||||||
cssdb@^7.1.0:
|
|
||||||
version "7.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/cssdb/-/cssdb-7.2.0.tgz"
|
|
||||||
integrity sha512-JYlIsE7eKHSi0UNuCyo96YuIDFqvhGgHw4Ck6lsN+DP0Tp8M64UTDT2trGbkMDqnCoEjks7CkS0XcjU0rkvBdg==
|
|
||||||
|
|
||||||
cssesc@^3.0.0:
|
|
||||||
version "3.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
|
|
||||||
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
|
||||||
|
|
||||||
defined@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"
|
|
||||||
integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
|
|
||||||
|
|
||||||
detective@^5.2.1:
|
|
||||||
version "5.2.1"
|
|
||||||
resolved "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz"
|
|
||||||
integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==
|
|
||||||
dependencies:
|
|
||||||
acorn-node "^1.8.2"
|
|
||||||
defined "^1.0.0"
|
|
||||||
minimist "^1.2.6"
|
|
||||||
|
|
||||||
didyoumean@^1.2.2:
|
|
||||||
version "1.2.2"
|
|
||||||
resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz"
|
|
||||||
integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==
|
|
||||||
|
|
||||||
dlv@^1.1.3:
|
|
||||||
version "1.1.3"
|
|
||||||
resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz"
|
|
||||||
integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
|
|
||||||
|
|
||||||
electron-to-chromium@^1.4.251:
|
|
||||||
version "1.4.284"
|
|
||||||
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"
|
|
||||||
integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
|
|
||||||
|
|
||||||
escalade@^3.1.1:
|
|
||||||
version "3.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
|
|
||||||
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
|
|
||||||
|
|
||||||
fast-glob@^3.2.12:
|
|
||||||
version "3.2.12"
|
|
||||||
resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"
|
|
||||||
integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
|
|
||||||
dependencies:
|
|
||||||
"@nodelib/fs.stat" "^2.0.2"
|
|
||||||
"@nodelib/fs.walk" "^1.2.3"
|
|
||||||
glob-parent "^5.1.2"
|
|
||||||
merge2 "^1.3.0"
|
|
||||||
micromatch "^4.0.4"
|
|
||||||
|
|
||||||
fastq@^1.6.0:
|
|
||||||
version "1.13.0"
|
|
||||||
resolved "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"
|
|
||||||
integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
|
|
||||||
dependencies:
|
|
||||||
reusify "^1.0.4"
|
|
||||||
|
|
||||||
fill-range@^7.0.1:
|
|
||||||
version "7.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
|
|
||||||
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
|
||||||
dependencies:
|
|
||||||
to-regex-range "^5.0.1"
|
|
||||||
|
|
||||||
fraction.js@^4.2.0:
|
|
||||||
version "4.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"
|
|
||||||
integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
|
|
||||||
|
|
||||||
fsevents@~2.3.2:
|
|
||||||
version "2.3.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
|
||||||
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
|
||||||
|
|
||||||
function-bind@^1.1.1:
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
|
|
||||||
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
|
||||||
|
|
||||||
glob-parent@^5.1.2, glob-parent@~5.1.2:
|
|
||||||
version "5.1.2"
|
|
||||||
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
|
|
||||||
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
|
||||||
dependencies:
|
|
||||||
is-glob "^4.0.1"
|
|
||||||
|
|
||||||
glob-parent@^6.0.2:
|
|
||||||
version "6.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
|
|
||||||
integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
|
|
||||||
dependencies:
|
|
||||||
is-glob "^4.0.3"
|
|
||||||
|
|
||||||
has@^1.0.3:
|
|
||||||
version "1.0.3"
|
|
||||||
resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
|
|
||||||
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
|
||||||
dependencies:
|
|
||||||
function-bind "^1.1.1"
|
|
||||||
|
|
||||||
is-binary-path@~2.1.0:
|
|
||||||
version "2.1.0"
|
|
||||||
resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
|
|
||||||
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
|
||||||
dependencies:
|
|
||||||
binary-extensions "^2.0.0"
|
|
||||||
|
|
||||||
is-core-module@^2.8.1:
|
|
||||||
version "2.8.1"
|
|
||||||
resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz"
|
|
||||||
integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
|
|
||||||
dependencies:
|
|
||||||
has "^1.0.3"
|
|
||||||
|
|
||||||
is-core-module@^2.9.0:
|
|
||||||
version "2.11.0"
|
|
||||||
resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
|
|
||||||
integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
|
|
||||||
dependencies:
|
|
||||||
has "^1.0.3"
|
|
||||||
|
|
||||||
is-extglob@^2.1.1:
|
|
||||||
version "2.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
|
|
||||||
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
|
||||||
|
|
||||||
is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
|
|
||||||
version "4.0.3"
|
|
||||||
resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
|
|
||||||
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
|
|
||||||
dependencies:
|
|
||||||
is-extglob "^2.1.1"
|
|
||||||
|
|
||||||
is-number@^7.0.0:
|
|
||||||
version "7.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
|
|
||||||
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
|
||||||
|
|
||||||
lilconfig@^2.0.5, lilconfig@^2.0.6:
|
|
||||||
version "2.0.6"
|
|
||||||
resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz"
|
|
||||||
integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==
|
|
||||||
|
|
||||||
merge2@^1.3.0:
|
|
||||||
version "1.4.1"
|
|
||||||
resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
|
|
||||||
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
|
||||||
|
|
||||||
micromatch@^4.0.4:
|
|
||||||
version "4.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"
|
|
||||||
integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
|
|
||||||
dependencies:
|
|
||||||
braces "^3.0.1"
|
|
||||||
picomatch "^2.2.3"
|
|
||||||
|
|
||||||
micromatch@^4.0.5:
|
|
||||||
version "4.0.5"
|
|
||||||
resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
|
|
||||||
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
|
|
||||||
dependencies:
|
|
||||||
braces "^3.0.2"
|
|
||||||
picomatch "^2.3.1"
|
|
||||||
|
|
||||||
mini-svg-data-uri@^1.2.3:
|
|
||||||
version "1.2.3"
|
|
||||||
resolved "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.2.3.tgz"
|
|
||||||
integrity sha512-zd6KCAyXgmq6FV1mR10oKXYtvmA9vRoB6xPSTUJTbFApCtkefDnYueVR1gkof3KcdLZo1Y8mjF2DFmQMIxsHNQ==
|
|
||||||
|
|
||||||
minimist@^1.2.6:
|
|
||||||
version "1.2.7"
|
|
||||||
resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"
|
|
||||||
integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
|
|
||||||
|
|
||||||
nanoid@^3.3.4:
|
|
||||||
version "3.3.4"
|
|
||||||
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"
|
|
||||||
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
|
|
||||||
|
|
||||||
node-releases@^2.0.6:
|
|
||||||
version "2.0.6"
|
|
||||||
resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"
|
|
||||||
integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
|
|
||||||
|
|
||||||
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
|
||||||
version "3.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
|
|
||||||
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
|
||||||
|
|
||||||
normalize-range@^0.1.2:
|
|
||||||
version "0.1.2"
|
|
||||||
resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"
|
|
||||||
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
|
|
||||||
|
|
||||||
object-hash@^3.0.0:
|
|
||||||
version "3.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz"
|
|
||||||
integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
|
|
||||||
|
|
||||||
path-parse@^1.0.7:
|
|
||||||
version "1.0.7"
|
|
||||||
resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
|
|
||||||
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
|
||||||
|
|
||||||
picocolors@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
|
|
||||||
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
|
|
||||||
|
|
||||||
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1:
|
|
||||||
version "2.3.1"
|
|
||||||
resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
|
|
||||||
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
|
|
||||||
|
|
||||||
pify@^2.3.0:
|
|
||||||
version "2.3.0"
|
|
||||||
resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
|
|
||||||
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
|
|
||||||
|
|
||||||
postcss-attribute-case-insensitive@^5.0.2:
|
|
||||||
version "5.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz"
|
|
||||||
integrity sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
postcss-clamp@^4.1.0:
|
|
||||||
version "4.1.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz"
|
|
||||||
integrity sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-color-functional-notation@^4.2.4:
|
|
||||||
version "4.2.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz"
|
|
||||||
integrity sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-color-hex-alpha@^8.0.4:
|
|
||||||
version "8.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz"
|
|
||||||
integrity sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-color-rebeccapurple@^7.1.1:
|
|
||||||
version "7.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz"
|
|
||||||
integrity sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-custom-media@^8.0.2:
|
|
||||||
version "8.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz"
|
|
||||||
integrity sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-custom-properties@^12.1.10:
|
|
||||||
version "12.1.11"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz"
|
|
||||||
integrity sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-custom-selectors@^6.0.3:
|
|
||||||
version "6.0.3"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz"
|
|
||||||
integrity sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.4"
|
|
||||||
|
|
||||||
postcss-dir-pseudo-class@^6.0.5:
|
|
||||||
version "6.0.5"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz"
|
|
||||||
integrity sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
postcss-double-position-gradients@^3.1.2:
|
|
||||||
version "3.1.2"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz"
|
|
||||||
integrity sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/postcss-progressive-custom-properties" "^1.1.0"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-env-function@^4.0.6:
|
|
||||||
version "4.0.6"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz"
|
|
||||||
integrity sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-flexbugs-fixes@^5.0.2:
|
|
||||||
version "5.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz"
|
|
||||||
integrity sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==
|
|
||||||
|
|
||||||
postcss-focus-visible@^6.0.4:
|
|
||||||
version "6.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz"
|
|
||||||
integrity sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.9"
|
|
||||||
|
|
||||||
postcss-focus-within@^5.0.4:
|
|
||||||
version "5.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz"
|
|
||||||
integrity sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.9"
|
|
||||||
|
|
||||||
postcss-font-variant@^5.0.0:
|
|
||||||
version "5.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz"
|
|
||||||
integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==
|
|
||||||
|
|
||||||
postcss-gap-properties@^3.0.5:
|
|
||||||
version "3.0.5"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz"
|
|
||||||
integrity sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==
|
|
||||||
|
|
||||||
postcss-image-set-function@^4.0.7:
|
|
||||||
version "4.0.7"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz"
|
|
||||||
integrity sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-import@^14.1.0:
|
|
||||||
version "14.1.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz"
|
|
||||||
integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.0.0"
|
|
||||||
read-cache "^1.0.0"
|
|
||||||
resolve "^1.1.7"
|
|
||||||
|
|
||||||
postcss-import@^15.0.1:
|
|
||||||
version "15.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.1.tgz"
|
|
||||||
integrity sha512-UGlvk8EgT7Gm/Ndf9xZHnzr8xm8P54N8CBWLtcY5alP+YxlEge/Rv78etQyevZs3qWTE9If13+Bo6zATBrPOpA==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.0.0"
|
|
||||||
read-cache "^1.0.0"
|
|
||||||
resolve "^1.1.7"
|
|
||||||
|
|
||||||
postcss-initial@^4.0.1:
|
|
||||||
version "4.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz"
|
|
||||||
integrity sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==
|
|
||||||
|
|
||||||
postcss-js@^4.0.0:
|
|
||||||
version "4.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz"
|
|
||||||
integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==
|
|
||||||
dependencies:
|
|
||||||
camelcase-css "^2.0.1"
|
|
||||||
|
|
||||||
postcss-lab-function@^4.2.1:
|
|
||||||
version "4.2.1"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz"
|
|
||||||
integrity sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/postcss-progressive-custom-properties" "^1.1.0"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-load-config@^3.1.4:
|
|
||||||
version "3.1.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz"
|
|
||||||
integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
|
|
||||||
dependencies:
|
|
||||||
lilconfig "^2.0.5"
|
|
||||||
yaml "^1.10.2"
|
|
||||||
|
|
||||||
postcss-logical@^5.0.4:
|
|
||||||
version "5.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz"
|
|
||||||
integrity sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==
|
|
||||||
|
|
||||||
postcss-media-minmax@^5.0.0:
|
|
||||||
version "5.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz"
|
|
||||||
integrity sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==
|
|
||||||
|
|
||||||
postcss-nested@6.0.0, postcss-nested@^6.0.0:
|
|
||||||
version "6.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz"
|
|
||||||
integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
postcss-nesting@^10.2.0:
|
|
||||||
version "10.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz"
|
|
||||||
integrity sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/selector-specificity" "^2.0.0"
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
postcss-opacity-percentage@^1.1.2:
|
|
||||||
version "1.1.2"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz"
|
|
||||||
integrity sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==
|
|
||||||
|
|
||||||
postcss-overflow-shorthand@^3.0.4:
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz"
|
|
||||||
integrity sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-page-break@^3.0.4:
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz"
|
|
||||||
integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==
|
|
||||||
|
|
||||||
postcss-place@^7.0.5:
|
|
||||||
version "7.0.5"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz"
|
|
||||||
integrity sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-preset-env@^7.8.3:
|
|
||||||
version "7.8.3"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz"
|
|
||||||
integrity sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==
|
|
||||||
dependencies:
|
|
||||||
"@csstools/postcss-cascade-layers" "^1.1.1"
|
|
||||||
"@csstools/postcss-color-function" "^1.1.1"
|
|
||||||
"@csstools/postcss-font-format-keywords" "^1.0.1"
|
|
||||||
"@csstools/postcss-hwb-function" "^1.0.2"
|
|
||||||
"@csstools/postcss-ic-unit" "^1.0.1"
|
|
||||||
"@csstools/postcss-is-pseudo-class" "^2.0.7"
|
|
||||||
"@csstools/postcss-nested-calc" "^1.0.0"
|
|
||||||
"@csstools/postcss-normalize-display-values" "^1.0.1"
|
|
||||||
"@csstools/postcss-oklab-function" "^1.1.1"
|
|
||||||
"@csstools/postcss-progressive-custom-properties" "^1.3.0"
|
|
||||||
"@csstools/postcss-stepped-value-functions" "^1.0.1"
|
|
||||||
"@csstools/postcss-text-decoration-shorthand" "^1.0.0"
|
|
||||||
"@csstools/postcss-trigonometric-functions" "^1.0.2"
|
|
||||||
"@csstools/postcss-unset-value" "^1.0.2"
|
|
||||||
autoprefixer "^10.4.13"
|
|
||||||
browserslist "^4.21.4"
|
|
||||||
css-blank-pseudo "^3.0.3"
|
|
||||||
css-has-pseudo "^3.0.4"
|
|
||||||
css-prefers-color-scheme "^6.0.3"
|
|
||||||
cssdb "^7.1.0"
|
|
||||||
postcss-attribute-case-insensitive "^5.0.2"
|
|
||||||
postcss-clamp "^4.1.0"
|
|
||||||
postcss-color-functional-notation "^4.2.4"
|
|
||||||
postcss-color-hex-alpha "^8.0.4"
|
|
||||||
postcss-color-rebeccapurple "^7.1.1"
|
|
||||||
postcss-custom-media "^8.0.2"
|
|
||||||
postcss-custom-properties "^12.1.10"
|
|
||||||
postcss-custom-selectors "^6.0.3"
|
|
||||||
postcss-dir-pseudo-class "^6.0.5"
|
|
||||||
postcss-double-position-gradients "^3.1.2"
|
|
||||||
postcss-env-function "^4.0.6"
|
|
||||||
postcss-focus-visible "^6.0.4"
|
|
||||||
postcss-focus-within "^5.0.4"
|
|
||||||
postcss-font-variant "^5.0.0"
|
|
||||||
postcss-gap-properties "^3.0.5"
|
|
||||||
postcss-image-set-function "^4.0.7"
|
|
||||||
postcss-initial "^4.0.1"
|
|
||||||
postcss-lab-function "^4.2.1"
|
|
||||||
postcss-logical "^5.0.4"
|
|
||||||
postcss-media-minmax "^5.0.0"
|
|
||||||
postcss-nesting "^10.2.0"
|
|
||||||
postcss-opacity-percentage "^1.1.2"
|
|
||||||
postcss-overflow-shorthand "^3.0.4"
|
|
||||||
postcss-page-break "^3.0.4"
|
|
||||||
postcss-place "^7.0.5"
|
|
||||||
postcss-pseudo-class-any-link "^7.1.6"
|
|
||||||
postcss-replace-overflow-wrap "^4.0.0"
|
|
||||||
postcss-selector-not "^6.0.1"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
|
|
||||||
postcss-pseudo-class-any-link@^7.1.6:
|
|
||||||
version "7.1.6"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz"
|
|
||||||
integrity sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
postcss-replace-overflow-wrap@^4.0.0:
|
|
||||||
version "4.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz"
|
|
||||||
integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==
|
|
||||||
|
|
||||||
postcss-selector-not@^6.0.1:
|
|
||||||
version "6.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz"
|
|
||||||
integrity sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
|
|
||||||
postcss-selector-parser@^6.0.10:
|
|
||||||
version "6.0.11"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz"
|
|
||||||
integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==
|
|
||||||
dependencies:
|
|
||||||
cssesc "^3.0.0"
|
|
||||||
util-deprecate "^1.0.2"
|
|
||||||
|
|
||||||
postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.9:
|
|
||||||
version "6.0.9"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz"
|
|
||||||
integrity sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==
|
|
||||||
dependencies:
|
|
||||||
cssesc "^3.0.0"
|
|
||||||
util-deprecate "^1.0.2"
|
|
||||||
|
|
||||||
postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
|
|
||||||
version "4.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
|
|
||||||
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
|
||||||
|
|
||||||
postcss@^8.4.18, postcss@^8.4.19:
|
|
||||||
version "8.4.19"
|
|
||||||
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz"
|
|
||||||
integrity sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==
|
|
||||||
dependencies:
|
|
||||||
nanoid "^3.3.4"
|
|
||||||
picocolors "^1.0.0"
|
|
||||||
source-map-js "^1.0.2"
|
|
||||||
|
|
||||||
queue-microtask@^1.2.2:
|
|
||||||
version "1.2.3"
|
|
||||||
resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
|
|
||||||
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
|
|
||||||
|
|
||||||
quick-lru@^5.1.1:
|
|
||||||
version "5.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"
|
|
||||||
integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
|
|
||||||
|
|
||||||
read-cache@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz"
|
|
||||||
integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=
|
|
||||||
dependencies:
|
|
||||||
pify "^2.3.0"
|
|
||||||
|
|
||||||
readdirp@~3.6.0:
|
|
||||||
version "3.6.0"
|
|
||||||
resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
|
|
||||||
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
|
|
||||||
dependencies:
|
|
||||||
picomatch "^2.2.1"
|
|
||||||
|
|
||||||
resolve@^1.1.7:
|
|
||||||
version "1.22.0"
|
|
||||||
resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"
|
|
||||||
integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
|
|
||||||
dependencies:
|
|
||||||
is-core-module "^2.8.1"
|
|
||||||
path-parse "^1.0.7"
|
|
||||||
supports-preserve-symlinks-flag "^1.0.0"
|
|
||||||
|
|
||||||
resolve@^1.22.1:
|
|
||||||
version "1.22.1"
|
|
||||||
resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"
|
|
||||||
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
|
|
||||||
dependencies:
|
|
||||||
is-core-module "^2.9.0"
|
|
||||||
path-parse "^1.0.7"
|
|
||||||
supports-preserve-symlinks-flag "^1.0.0"
|
|
||||||
|
|
||||||
reusify@^1.0.4:
|
|
||||||
version "1.0.4"
|
|
||||||
resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
|
|
||||||
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
|
|
||||||
|
|
||||||
run-parallel@^1.1.9:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
|
|
||||||
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
|
|
||||||
dependencies:
|
|
||||||
queue-microtask "^1.2.2"
|
|
||||||
|
|
||||||
source-map-js@^1.0.2:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
|
|
||||||
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
|
||||||
|
|
||||||
supports-preserve-symlinks-flag@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
|
|
||||||
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
|
|
||||||
|
|
||||||
tailwindcss@^3.2.4:
|
|
||||||
version "3.2.4"
|
|
||||||
resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz"
|
|
||||||
integrity sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==
|
|
||||||
dependencies:
|
|
||||||
arg "^5.0.2"
|
|
||||||
chokidar "^3.5.3"
|
|
||||||
color-name "^1.1.4"
|
|
||||||
detective "^5.2.1"
|
|
||||||
didyoumean "^1.2.2"
|
|
||||||
dlv "^1.1.3"
|
|
||||||
fast-glob "^3.2.12"
|
|
||||||
glob-parent "^6.0.2"
|
|
||||||
is-glob "^4.0.3"
|
|
||||||
lilconfig "^2.0.6"
|
|
||||||
micromatch "^4.0.5"
|
|
||||||
normalize-path "^3.0.0"
|
|
||||||
object-hash "^3.0.0"
|
|
||||||
picocolors "^1.0.0"
|
|
||||||
postcss "^8.4.18"
|
|
||||||
postcss-import "^14.1.0"
|
|
||||||
postcss-js "^4.0.0"
|
|
||||||
postcss-load-config "^3.1.4"
|
|
||||||
postcss-nested "6.0.0"
|
|
||||||
postcss-selector-parser "^6.0.10"
|
|
||||||
postcss-value-parser "^4.2.0"
|
|
||||||
quick-lru "^5.1.1"
|
|
||||||
resolve "^1.22.1"
|
|
||||||
|
|
||||||
to-regex-range@^5.0.1:
|
|
||||||
version "5.0.1"
|
|
||||||
resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
|
|
||||||
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
|
|
||||||
dependencies:
|
|
||||||
is-number "^7.0.0"
|
|
||||||
|
|
||||||
update-browserslist-db@^1.0.9:
|
|
||||||
version "1.0.10"
|
|
||||||
resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"
|
|
||||||
integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
|
|
||||||
dependencies:
|
|
||||||
escalade "^3.1.1"
|
|
||||||
picocolors "^1.0.0"
|
|
||||||
|
|
||||||
util-deprecate@^1.0.2:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
|
|
||||||
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
|
||||||
|
|
||||||
xtend@^4.0.2:
|
|
||||||
version "4.0.2"
|
|
||||||
resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
|
|
||||||
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
|
||||||
|
|
||||||
yaml@^1.10.2:
|
|
||||||
version "1.10.2"
|
|
||||||
resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
|
|
||||||
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|
|
||||||
Reference in New Issue
Block a user