├── .editorconfig ├── .eslintrc.cjs ├── .gitattributes ├── .github ├── BETA_NOTIFICATION.md ├── BETA_NOTIFICATION.md.license ├── ISSUE_TEMPLATE │ ├── ANNOUNCEMENT.yml │ ├── ANNOUNCEMENT.yml.license │ ├── BUG_REPORT.yml │ ├── BUG_REPORT.yml.license │ ├── FEATURE_REQUEST.yml │ ├── FEATURE_REQUEST.yml.license │ ├── config.yml │ └── config.yml.license ├── RELEASE_NOTIFICATION.md ├── RELEASE_NOTIFICATION.md.license ├── actions │ ├── get-polls-version │ │ └── action.yml │ ├── setup-composer │ │ └── action.yml │ ├── setup-node │ │ └── action.yml │ └── setup-server │ │ └── action.yml ├── dependabot.yml ├── release.yml └── workflows │ ├── appstore-build-publish.yml │ ├── auto-merge.yml │ ├── codeql-analysis.yml │ ├── lint-eslint.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── lint-prettier.yml │ ├── lock-closed-issues.yml │ ├── nodejs.yml │ ├── phpunit-mariadb.yml │ ├── phpunit-mysql.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── pr-feedback.yml │ ├── psalm-matrix.yml │ ├── publish_alpha.yml │ ├── publish_beta.yml │ ├── publish_release.yml │ ├── reuse.yml │ └── stale.yml ├── .gitignore ├── .l10nignore ├── .php-cs-fixer.dist.php ├── .prettierignore ├── .prettierrc.json ├── .prettierrc.json.license ├── .stylelintignore ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── COPYING ├── LICENSES ├── AGPL-3.0-or-later.txt ├── CC0-1.0.txt └── MIT.txt ├── Makefile ├── README.md ├── REUSE.toml ├── _config.yml ├── appinfo ├── info.xml ├── info.xml.license └── routes.php ├── composer.json ├── composer.lock ├── docs └── API_v1.0.md ├── external.d.ts ├── img ├── app.svg ├── polls-dark.svg └── polls.svg ├── jsconfig.json ├── l10n ├── .gitkeep ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── ko.js ├── ko.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── Activity │ └── PollChanges.php ├── AppConstants.php ├── AppInfo │ └── Application.php ├── Attributes │ ├── ManuallyRunnableCronJob.php │ └── ShareTokenRequired.php ├── Command │ ├── Command.php │ ├── Db │ │ ├── CleanMigrations.php │ │ ├── CreateIndices.php │ │ ├── FixDB.php │ │ ├── Purge.php │ │ ├── Rebuild.php │ │ ├── RemoveFKConstraints.php │ │ ├── RemoveOptionalIndices.php │ │ ├── RemoveUniqueIndices.php │ │ └── ResetWatch.php │ ├── Poll │ │ └── TransferOwnership.php │ └── Share │ │ ├── Add.php │ │ ├── Remove.php │ │ └── TShareCommand.php ├── Controller │ ├── AdminController.php │ ├── BaseApiV2Controller.php │ ├── BaseController.php │ ├── CommentApiController.php │ ├── CommentController.php │ ├── OptionApiController.php │ ├── OptionController.php │ ├── PageController.php │ ├── PollApiController.php │ ├── PollController.php │ ├── PollGroupController.php │ ├── PublicController.php │ ├── SettingsController.php │ ├── ShareApiController.php │ ├── ShareController.php │ ├── SubscriptionApiController.php │ ├── SubscriptionController.php │ ├── SystemController.php │ ├── UserApiController.php │ ├── UserController.php │ ├── VoteApiController.php │ ├── VoteController.php │ ├── WatchApiController.php │ └── WatchController.php ├── Cron │ ├── AutoReminderCron.php │ ├── GroupDeletedJob.php │ ├── JanitorCron.php │ ├── NotificationCron.php │ └── UserDeletedJob.php ├── Dashboard │ └── PollWidget.php ├── Db │ ├── Comment.php │ ├── CommentMapper.php │ ├── EntityWithUser.php │ ├── Log.php │ ├── LogMapper.php │ ├── Model.php │ ├── Option.php │ ├── OptionMapper.php │ ├── Poll.php │ ├── PollGroup.php │ ├── PollGroupMapper.php │ ├── PollMapper.php │ ├── Preferences.php │ ├── PreferencesMapper.php │ ├── QBMapperWithUser.php │ ├── Share.php │ ├── ShareMapper.php │ ├── Subscription.php │ ├── SubscriptionMapper.php │ ├── UserMapper.php │ ├── V5 │ │ ├── DbManager.php │ │ ├── IndexManager.php │ │ └── TableManager.php │ ├── Vote.php │ ├── VoteMapper.php │ ├── Watch.php │ └── WatchMapper.php ├── Event │ ├── BaseEvent.php │ ├── CommentAddEvent.php │ ├── CommentDeleteEvent.php │ ├── CommentEvent.php │ ├── OptionConfirmedEvent.php │ ├── OptionCreatedEvent.php │ ├── OptionDeletedEvent.php │ ├── OptionEvent.php │ ├── OptionUnconfirmedEvent.php │ ├── OptionUpdatedEvent.php │ ├── PollArchivedEvent.php │ ├── PollCloseEvent.php │ ├── PollCreatedEvent.php │ ├── PollDeletedEvent.php │ ├── PollEvent.php │ ├── PollExpiredEvent.php │ ├── PollOptionReorderedEvent.php │ ├── PollOwnerChangeEvent.php │ ├── PollReopenEvent.php │ ├── PollRestoredEvent.php │ ├── PollUpdatedEvent.php │ ├── ShareChangedDisplayNameEvent.php │ ├── ShareChangedEmailEvent.php │ ├── ShareChangedLabelEvent.php │ ├── ShareChangedRegistrationConstraintEvent.php │ ├── ShareCreateEvent.php │ ├── ShareDeletedEvent.php │ ├── ShareEvent.php │ ├── ShareLockedEvent.php │ ├── ShareRegistrationEvent.php │ ├── ShareTypeChangedEvent.php │ ├── VoteEvent.php │ └── VoteSetEvent.php ├── Exceptions │ ├── AlreadyDeletedException.php │ ├── CirclesNotEnabledException.php │ ├── ContactsNotEnabledExceptions.php │ ├── EmptyTitleException.php │ ├── Exception.php │ ├── ForbiddenException.php │ ├── InsufficientAttributesException.php │ ├── InvalidAccessException.php │ ├── InvalidClassException.php │ ├── InvalidEmailAddress.php │ ├── InvalidPollTypeException.php │ ├── InvalidShareTypeException.php │ ├── InvalidShowResultsException.php │ ├── InvalidUsernameException.php │ ├── NoDeadLineException.php │ ├── NoEmailAddress.php │ ├── NoUpdatesException.php │ ├── NotAuthorizedException.php │ ├── NotFoundException.php │ ├── OCPEventException.php │ ├── PreconditionColumnIsMissingException.php │ ├── PreconditionException.php │ ├── PreconditionTableIsMissingException.php │ ├── SchemaMissmatchException.php │ ├── ShareAlreadyExistsException.php │ ├── ShareNotFoundException.php │ ├── TooShortException.php │ ├── UserNotFoundException.php │ ├── VoteLimitExceededException.php │ └── WatchModeChanged.php ├── Filter │ └── ActivityFilter.php ├── Helper │ ├── Container.php │ ├── Hash.php │ └── SqlHelper.php ├── Listener │ ├── AddMissingIndicesListener.php │ ├── BaseListener.php │ ├── CommentListener.php │ ├── GroupDeletedListener.php │ ├── OptionListener.php │ ├── PollListener.php │ ├── PollsReferenceListener.php │ ├── ShareListener.php │ ├── UserDeletedListener.php │ └── VoteListener.php ├── Middleware │ └── RequestAttributesMiddleware.php ├── Migration │ ├── FixVotes.php │ ├── RepairSteps │ │ ├── CleanTables.php │ │ ├── CreateIndices.php │ │ ├── CreateTables.php │ │ ├── DropOrphanedColumns.php │ │ ├── DropOrphanedTables.php │ │ ├── FixNullish.php │ │ ├── Install.php │ │ ├── MigratePublicToOpen.php │ │ ├── RemoveIndices.php │ │ ├── RemoveObsoleteMigrations.php │ │ ├── SetLastInteraction.php │ │ ├── UpdateHashes.php │ │ └── UpdateInteraction.php │ ├── V5 │ │ └── TableSchema.php │ ├── Version080300Date20250812231603.php │ ├── Version080300Date20250816201201.php │ ├── Version080301Date20250822153002.php │ ├── Version080301Date20250822182903.php │ ├── Version080303Date20250824090101.php │ └── Version080307Date20250826231102.php ├── Model │ ├── CalendarEvent.php │ ├── Group │ │ ├── Circle.php │ │ ├── ContactGroup.php │ │ └── Group.php │ ├── Mail │ │ ├── ConfirmationMail.php │ │ ├── InvitationMail.php │ │ ├── MailBase.php │ │ ├── NotificationMail.php │ │ └── ReminderMail.php │ ├── Search │ │ └── PollsSearchResultEntry.php │ ├── SentResult.php │ ├── Sequence.php │ ├── SequenceUnit.php │ ├── Settings │ │ ├── AppSettings.php │ │ └── SystemSettings.php │ ├── SimpleOption.php │ ├── User │ │ ├── Admin.php │ │ ├── Anon.php │ │ ├── Contact.php │ │ ├── Cron.php │ │ ├── Email.php │ │ ├── GenericUser.php │ │ ├── Ghost.php │ │ └── User.php │ └── UserBase.php ├── Notification │ └── Notifier.php ├── Provider │ ├── ActivityProvider.php │ ├── ReferenceProvider.php │ └── SearchProvider.php ├── ResponseDefinitions.php ├── Service │ ├── ActivityService.php │ ├── CalendarService.php │ ├── CommentService.php │ ├── DiffService.php │ ├── LogService.php │ ├── MailService.php │ ├── NotificationService.php │ ├── OptionService.php │ ├── PollGroupService.php │ ├── PollService.php │ ├── PreferencesService.php │ ├── SettingsService.php │ ├── ShareService.php │ ├── SubscriptionService.php │ ├── SystemService.php │ ├── VoteService.php │ └── WatchService.php ├── Settings │ ├── ActivitySettings.php │ ├── ActivityVote.php │ ├── AdminSection.php │ ├── AdminSettings.php │ ├── PersonalSection.php │ └── PersonalSettings.php ├── Types.php └── UserSession.php ├── package.json ├── phpunit.integration.xml ├── psalm-baseline.xml ├── psalm-baseline.xml.license ├── psalm.xml ├── screenshots ├── edit-poll.png ├── overview.png ├── share.png └── vote.png ├── src ├── Api │ ├── index.ts │ └── modules │ │ ├── HttpApi.js │ │ ├── activity.ts │ │ ├── admin.ts │ │ ├── api.types.ts │ │ ├── appSettings.ts │ │ ├── calendar.ts │ │ ├── comments.ts │ │ ├── options.ts │ │ ├── pollGroups.ts │ │ ├── polls.ts │ │ ├── public.ts │ │ ├── session.ts │ │ ├── shares.ts │ │ ├── userSettings.ts │ │ ├── validators.ts │ │ └── votes.ts ├── App.vue ├── Exceptions │ └── Exceptions.ts ├── Types │ └── index.ts ├── adminSettings.ts ├── assets │ ├── icons │ │ ├── maybe-vote.svg │ │ ├── no-vote.svg │ │ ├── spinner.svg │ │ └── yes-vote.svg │ └── scss │ │ ├── globals.scss │ │ ├── hacks.scss │ │ ├── markdown.scss │ │ ├── polls-icon.scss │ │ ├── print.scss │ │ ├── transitions.scss │ │ └── vars.scss ├── components │ ├── Actions │ │ └── modules │ │ │ ├── ActionAddOption.vue │ │ │ ├── ActionAddPoll.vue │ │ │ ├── ActionDelete.vue │ │ │ ├── ActionDeleteOrphanedVotes.vue │ │ │ ├── ActionOpenOptionsSidebar.vue │ │ │ ├── ActionOpenSharesSidebar.vue │ │ │ ├── ActionRegister.vue │ │ │ ├── ActionSendConfirmed.vue │ │ │ ├── ActionSwitchSafeTable.vue │ │ │ └── ActionToggleSidebar.vue │ ├── Activity │ │ ├── Activities.vue │ │ └── ActivityItem.vue │ ├── AppIcons │ │ ├── MaybeIcon.vue │ │ ├── PollsAppIcon.vue │ │ ├── Spinner.vue │ │ └── types.ts │ ├── Base │ │ └── modules │ │ │ ├── BadgeDiv.vue │ │ │ ├── BadgeSmallDiv.vue │ │ │ ├── ButtonModal.vue │ │ │ ├── CardDiv.vue │ │ │ ├── Collapsible.vue │ │ │ ├── ConfigBox.vue │ │ │ ├── DateBox.vue │ │ │ ├── DateTimePicker.vue │ │ │ ├── FlexSettings.vue │ │ │ ├── FlexSpacer.vue │ │ │ ├── HeaderBar.vue │ │ │ ├── InputDiv.vue │ │ │ ├── IntersectionObserver.vue │ │ │ ├── LoadingOverlay.vue │ │ │ ├── QrModal.vue │ │ │ ├── RadioGroupDiv.vue │ │ │ └── StickyDiv.vue │ ├── Calendar │ │ ├── CalendarInfo.vue │ │ └── CalendarPeek.vue │ ├── Cards │ │ ├── CardAddProposals.vue │ │ ├── CardAnonymousPollHint.vue │ │ ├── CardClosedPoll.vue │ │ ├── CardLimitedVotes.vue │ │ ├── CardLocked.vue │ │ ├── CardRegister.vue │ │ ├── CardSendConfirmations.vue │ │ ├── CardUnpublishedPoll.vue │ │ └── VoteInfoCards.vue │ ├── Combo │ │ ├── ComboTable.vue │ │ ├── VoteColumn.vue │ │ └── VoteItem.vue │ ├── Comments │ │ ├── CommentAdd.vue │ │ ├── CommentItem.vue │ │ └── Comments.vue │ ├── Configuration │ │ ├── AutoReminderInformation.vue │ │ ├── ConfigAllowComment.vue │ │ ├── ConfigAllowMayBe.vue │ │ ├── ConfigAnonymous.vue │ │ ├── ConfigAutoReminder.vue │ │ ├── ConfigClosing.vue │ │ ├── ConfigDangerArea.vue │ │ ├── ConfigDescription.vue │ │ ├── ConfigForceConfidentialComments.vue │ │ ├── ConfigForceViewMode.vue │ │ ├── ConfigOptionLimit.vue │ │ ├── ConfigProposals.vue │ │ ├── ConfigShowResults.vue │ │ ├── ConfigTitle.vue │ │ ├── ConfigUseNo.vue │ │ └── ConfigVoteLimit.vue │ ├── Create │ │ ├── CreateDlg.vue │ │ └── PollCreateDlg.vue │ ├── Export │ │ └── ExportPoll.vue │ ├── Modals │ │ ├── DeletePollDialog.vue │ │ ├── OptionsAddModal.vue │ │ └── TransferPollDialog.vue │ ├── Navigation │ │ └── PollNavigationItems.vue │ ├── Options │ │ ├── Counter.vue │ │ ├── OptionCloneDate.vue │ │ ├── OptionItem.vue │ │ ├── OptionItemDateBox.vue │ │ ├── OptionItemOwner.vue │ │ ├── OptionMenu.vue │ │ ├── OptionsDate.vue │ │ ├── OptionsDateAddDialog.vue │ │ ├── OptionsDateShift.vue │ │ ├── OptionsText.vue │ │ ├── OptionsTextAdd.vue │ │ └── OptionsTextAddBulk.vue │ ├── Poll │ │ ├── MarkDownDescription.vue │ │ ├── PollHeaderButtons.vue │ │ ├── PollInfoLine.vue │ │ └── PollInformation.vue │ ├── PollGroup │ │ ├── ConfigDescriptionPollGroup.vue │ │ ├── ConfigNamePollGroup.vue │ │ ├── ConfigTitleExtPollGroup.vue │ │ └── PollGroupEditDlg.vue │ ├── PollList │ │ ├── PollItem.vue │ │ ├── PollItemActions.vue │ │ └── PollListSort.vue │ ├── Public │ │ └── PublicRegisterModal.vue │ ├── Settings │ │ ├── AdminSettings │ │ │ ├── AdminActivities.vue │ │ │ ├── AdminArchivePolls.vue │ │ │ ├── AdminCombo.vue │ │ │ ├── AdminDeletePolls.vue │ │ │ ├── AdminEmail.vue │ │ │ ├── AdminJobs.vue │ │ │ ├── AdminLegal.vue │ │ │ ├── AdminPerformance.vue │ │ │ ├── AdminPollCreation.vue │ │ │ ├── AdminPollDownload.vue │ │ │ ├── AdminPollsInNavigation.vue │ │ │ ├── AdminShareOpenPoll.vue │ │ │ ├── AdminSharePublicCreate.vue │ │ │ ├── AdminSharePublicShowLogin.vue │ │ │ ├── AdminShowMailAddresses.vue │ │ │ └── AdminUnrescrictedOwners.vue │ │ ├── UserSettings │ │ │ ├── CalendarSettings.vue │ │ │ ├── FeatureSettings.vue │ │ │ └── StyleSettings.vue │ │ └── UserSettingsDlg.vue │ ├── Shares │ │ ├── ShareItem.vue │ │ ├── ShareItemAllUsers.vue │ │ ├── ShareMenu.vue │ │ ├── SharePublicAdd.vue │ │ ├── SharesList.vue │ │ ├── SharesListLocked.vue │ │ ├── SharesListPollGroup.vue │ │ └── SharesListUnsent.vue │ ├── SideBar │ │ ├── SideBarTabActivity.vue │ │ ├── SideBarTabComments.vue │ │ ├── SideBarTabConfiguration.vue │ │ ├── SideBarTabConfigurationPollGroup.vue │ │ ├── SideBarTabDatePolls.vue │ │ ├── SideBarTabOptions.vue │ │ ├── SideBarTabShare.vue │ │ └── SideBarTabSharePollGroup.vue │ ├── Subscription │ │ └── ActionSubscription.vue │ ├── User │ │ ├── ActionInputDisplayName.vue │ │ ├── ActionInputEmailAddress.vue │ │ ├── UserAvatar.types.ts │ │ ├── UserAvatar.vue │ │ ├── UserBubble.vue │ │ ├── UserItem.vue │ │ ├── UserMenu.vue │ │ └── UserSearch.vue │ └── VoteTable │ │ ├── VoteButton.vue │ │ ├── VoteIndicator.vue │ │ ├── VoteItem.vue │ │ ├── VoteMenu.vue │ │ ├── VoteParticipant.vue │ │ ├── VoteTable.vue │ │ └── VotersList.vue ├── composables │ ├── context.ts │ ├── elementWidth.ts │ ├── handleScroll.ts │ ├── usePollWatcher.ts │ └── usePollWatcher.types.ts ├── constants │ └── dateUnits.ts ├── dashboard.ts ├── event-bus.d.ts ├── helpers │ └── modules │ │ ├── GuestBubble.ts │ │ ├── SimpleLink.ts │ │ ├── StoreHelper.ts │ │ ├── arrayHelper.ts │ │ ├── comments.ts │ │ ├── cookieHelper.ts │ │ └── logger.ts ├── main.ts ├── plugins │ └── piniaDebounce.ts ├── polls-reference.ts ├── router.ts ├── stores │ ├── activity.ts │ ├── activity.types.ts │ ├── appSettings.ts │ ├── appSettings.types.ts │ ├── combo.ts │ ├── combo.types.ts │ ├── comments.ts │ ├── comments.types.ts │ ├── index.ts │ ├── options.ts │ ├── options.types.ts │ ├── poll.ts │ ├── poll.types.ts │ ├── pollGroups.ts │ ├── pollGroups.types.ts │ ├── polls.ts │ ├── polls.types.ts │ ├── preferences.ts │ ├── preferences.types.ts │ ├── session.ts │ ├── session.types.ts │ ├── shares.ts │ ├── shares.types.ts │ ├── subscription.ts │ ├── votes.ts │ └── votes.types.ts ├── userSettings.ts ├── views │ ├── AdminSettingsPage.vue │ ├── Combo.vue │ ├── Dashboard.vue │ ├── Forbidden.vue │ ├── Navigation.vue │ ├── NotFound.vue │ ├── PollList.vue │ ├── Reference.vue │ ├── SideBar.vue │ ├── SideBarCombo.vue │ ├── SideBarPollGroup.vue │ ├── UserSettingsPage.vue │ └── Vote.vue └── workers │ └── pollWatcher.worker.ts ├── stubs └── circles-stubs.php ├── stylelint.config.cjs ├── sync_list.txt ├── sync_list.txt.license ├── templates └── main.php ├── tests ├── Integration │ ├── App │ │ └── AppTest.php │ └── Command │ │ └── Share │ │ ├── AddTest.php │ │ ├── RemoveTest.php │ │ └── TShareCommandTest.php ├── Unit │ ├── Controller │ │ └── PageControllerTest.php │ ├── Db │ │ ├── CommentMapperTest.php │ │ ├── LogMapperTest.php │ │ ├── OptionMapperTest.php │ │ ├── PollMapperTest.php │ │ ├── SubscriptionMapperTest.php │ │ └── VoteMapperTest.php │ ├── Factories │ │ ├── CommentFactory.php │ │ ├── LogFactory.php │ │ ├── OptionFactory.php │ │ ├── PollFactory.php │ │ ├── PreferencesFactory.php │ │ ├── ShareFactory.php │ │ ├── SubscriptionFactory.php │ │ └── VoteFactory.php │ ├── FactoryMuffin.php │ └── UnitTestCase.php ├── bootstrap.php ├── phpunit.integration.xml └── phpunit.xml ├── tsconfig.json ├── update-app-version.mjs ├── vendor-bin ├── openapi-extractor │ └── composer.json ├── php-cs-fixer │ └── composer.json ├── phpunit │ └── composer.json └── psalm │ └── composer.json └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /vendor-bin/**/composer.lock binary 2 | -------------------------------------------------------------------------------- /.github/BETA_NOTIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/BETA_NOTIFICATION.md -------------------------------------------------------------------------------- /.github/BETA_NOTIFICATION.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/BETA_NOTIFICATION.md.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ANNOUNCEMENT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/ANNOUNCEMENT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ANNOUNCEMENT.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/ANNOUNCEMENT.yml.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yml.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/ISSUE_TEMPLATE/config.yml.license -------------------------------------------------------------------------------- /.github/RELEASE_NOTIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/RELEASE_NOTIFICATION.md -------------------------------------------------------------------------------- /.github/RELEASE_NOTIFICATION.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/RELEASE_NOTIFICATION.md.license -------------------------------------------------------------------------------- /.github/actions/get-polls-version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/actions/get-polls-version/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-composer/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/actions/setup-composer/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/actions/setup-node/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-server/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/actions/setup-server/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/lint-prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/lint-prettier.yml -------------------------------------------------------------------------------- /.github/workflows/lock-closed-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/lock-closed-issues.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mariadb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/phpunit-mariadb.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/psalm-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/publish_alpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/publish_alpha.yml -------------------------------------------------------------------------------- /.github/workflows/publish_beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/publish_beta.yml -------------------------------------------------------------------------------- /.github/workflows/publish_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/publish_release.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.l10nignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@nextcloud/prettier-config" 2 | -------------------------------------------------------------------------------- /.prettierrc.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.prettierrc.json.license -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/REUSE.toml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/_config.yml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/info.xml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/appinfo/info.xml.license -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/API_v1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/docs/API_v1.0.md -------------------------------------------------------------------------------- /external.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/external.d.ts -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/img/app.svg -------------------------------------------------------------------------------- /img/polls-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/img/polls-dark.svg -------------------------------------------------------------------------------- /img/polls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/img/polls.svg -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/jsconfig.json -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/Activity/PollChanges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Activity/PollChanges.php -------------------------------------------------------------------------------- /lib/AppConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/AppConstants.php -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/Attributes/ManuallyRunnableCronJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Attributes/ManuallyRunnableCronJob.php -------------------------------------------------------------------------------- /lib/Attributes/ShareTokenRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Attributes/ShareTokenRequired.php -------------------------------------------------------------------------------- /lib/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Command.php -------------------------------------------------------------------------------- /lib/Command/Db/CleanMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/CleanMigrations.php -------------------------------------------------------------------------------- /lib/Command/Db/CreateIndices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/CreateIndices.php -------------------------------------------------------------------------------- /lib/Command/Db/FixDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/FixDB.php -------------------------------------------------------------------------------- /lib/Command/Db/Purge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/Purge.php -------------------------------------------------------------------------------- /lib/Command/Db/Rebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/Rebuild.php -------------------------------------------------------------------------------- /lib/Command/Db/RemoveFKConstraints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/RemoveFKConstraints.php -------------------------------------------------------------------------------- /lib/Command/Db/RemoveOptionalIndices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/RemoveOptionalIndices.php -------------------------------------------------------------------------------- /lib/Command/Db/RemoveUniqueIndices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/RemoveUniqueIndices.php -------------------------------------------------------------------------------- /lib/Command/Db/ResetWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Db/ResetWatch.php -------------------------------------------------------------------------------- /lib/Command/Poll/TransferOwnership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Poll/TransferOwnership.php -------------------------------------------------------------------------------- /lib/Command/Share/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Share/Add.php -------------------------------------------------------------------------------- /lib/Command/Share/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Share/Remove.php -------------------------------------------------------------------------------- /lib/Command/Share/TShareCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Command/Share/TShareCommand.php -------------------------------------------------------------------------------- /lib/Controller/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/AdminController.php -------------------------------------------------------------------------------- /lib/Controller/BaseApiV2Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/BaseApiV2Controller.php -------------------------------------------------------------------------------- /lib/Controller/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/BaseController.php -------------------------------------------------------------------------------- /lib/Controller/CommentApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/CommentApiController.php -------------------------------------------------------------------------------- /lib/Controller/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/CommentController.php -------------------------------------------------------------------------------- /lib/Controller/OptionApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/OptionApiController.php -------------------------------------------------------------------------------- /lib/Controller/OptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/OptionController.php -------------------------------------------------------------------------------- /lib/Controller/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/PageController.php -------------------------------------------------------------------------------- /lib/Controller/PollApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/PollApiController.php -------------------------------------------------------------------------------- /lib/Controller/PollController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/PollController.php -------------------------------------------------------------------------------- /lib/Controller/PollGroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/PollGroupController.php -------------------------------------------------------------------------------- /lib/Controller/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/PublicController.php -------------------------------------------------------------------------------- /lib/Controller/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/SettingsController.php -------------------------------------------------------------------------------- /lib/Controller/ShareApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/ShareApiController.php -------------------------------------------------------------------------------- /lib/Controller/ShareController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/ShareController.php -------------------------------------------------------------------------------- /lib/Controller/SubscriptionApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/SubscriptionApiController.php -------------------------------------------------------------------------------- /lib/Controller/SubscriptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/SubscriptionController.php -------------------------------------------------------------------------------- /lib/Controller/SystemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/SystemController.php -------------------------------------------------------------------------------- /lib/Controller/UserApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/UserApiController.php -------------------------------------------------------------------------------- /lib/Controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/UserController.php -------------------------------------------------------------------------------- /lib/Controller/VoteApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/VoteApiController.php -------------------------------------------------------------------------------- /lib/Controller/VoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/VoteController.php -------------------------------------------------------------------------------- /lib/Controller/WatchApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/WatchApiController.php -------------------------------------------------------------------------------- /lib/Controller/WatchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Controller/WatchController.php -------------------------------------------------------------------------------- /lib/Cron/AutoReminderCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Cron/AutoReminderCron.php -------------------------------------------------------------------------------- /lib/Cron/GroupDeletedJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Cron/GroupDeletedJob.php -------------------------------------------------------------------------------- /lib/Cron/JanitorCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Cron/JanitorCron.php -------------------------------------------------------------------------------- /lib/Cron/NotificationCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Cron/NotificationCron.php -------------------------------------------------------------------------------- /lib/Cron/UserDeletedJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Cron/UserDeletedJob.php -------------------------------------------------------------------------------- /lib/Dashboard/PollWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Dashboard/PollWidget.php -------------------------------------------------------------------------------- /lib/Db/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Comment.php -------------------------------------------------------------------------------- /lib/Db/CommentMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/CommentMapper.php -------------------------------------------------------------------------------- /lib/Db/EntityWithUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/EntityWithUser.php -------------------------------------------------------------------------------- /lib/Db/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Log.php -------------------------------------------------------------------------------- /lib/Db/LogMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/LogMapper.php -------------------------------------------------------------------------------- /lib/Db/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Model.php -------------------------------------------------------------------------------- /lib/Db/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Option.php -------------------------------------------------------------------------------- /lib/Db/OptionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/OptionMapper.php -------------------------------------------------------------------------------- /lib/Db/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Poll.php -------------------------------------------------------------------------------- /lib/Db/PollGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/PollGroup.php -------------------------------------------------------------------------------- /lib/Db/PollGroupMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/PollGroupMapper.php -------------------------------------------------------------------------------- /lib/Db/PollMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/PollMapper.php -------------------------------------------------------------------------------- /lib/Db/Preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Preferences.php -------------------------------------------------------------------------------- /lib/Db/PreferencesMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/PreferencesMapper.php -------------------------------------------------------------------------------- /lib/Db/QBMapperWithUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/QBMapperWithUser.php -------------------------------------------------------------------------------- /lib/Db/Share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Share.php -------------------------------------------------------------------------------- /lib/Db/ShareMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/ShareMapper.php -------------------------------------------------------------------------------- /lib/Db/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Subscription.php -------------------------------------------------------------------------------- /lib/Db/SubscriptionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/SubscriptionMapper.php -------------------------------------------------------------------------------- /lib/Db/UserMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/UserMapper.php -------------------------------------------------------------------------------- /lib/Db/V5/DbManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/V5/DbManager.php -------------------------------------------------------------------------------- /lib/Db/V5/IndexManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/V5/IndexManager.php -------------------------------------------------------------------------------- /lib/Db/V5/TableManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/V5/TableManager.php -------------------------------------------------------------------------------- /lib/Db/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Vote.php -------------------------------------------------------------------------------- /lib/Db/VoteMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/VoteMapper.php -------------------------------------------------------------------------------- /lib/Db/Watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/Watch.php -------------------------------------------------------------------------------- /lib/Db/WatchMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Db/WatchMapper.php -------------------------------------------------------------------------------- /lib/Event/BaseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/BaseEvent.php -------------------------------------------------------------------------------- /lib/Event/CommentAddEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/CommentAddEvent.php -------------------------------------------------------------------------------- /lib/Event/CommentDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/CommentDeleteEvent.php -------------------------------------------------------------------------------- /lib/Event/CommentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/CommentEvent.php -------------------------------------------------------------------------------- /lib/Event/OptionConfirmedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/OptionConfirmedEvent.php -------------------------------------------------------------------------------- /lib/Event/OptionCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/OptionCreatedEvent.php -------------------------------------------------------------------------------- /lib/Event/OptionDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/OptionDeletedEvent.php -------------------------------------------------------------------------------- /lib/Event/OptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/OptionEvent.php -------------------------------------------------------------------------------- /lib/Event/OptionUnconfirmedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/OptionUnconfirmedEvent.php -------------------------------------------------------------------------------- /lib/Event/OptionUpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/OptionUpdatedEvent.php -------------------------------------------------------------------------------- /lib/Event/PollArchivedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollArchivedEvent.php -------------------------------------------------------------------------------- /lib/Event/PollCloseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollCloseEvent.php -------------------------------------------------------------------------------- /lib/Event/PollCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollCreatedEvent.php -------------------------------------------------------------------------------- /lib/Event/PollDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollDeletedEvent.php -------------------------------------------------------------------------------- /lib/Event/PollEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollEvent.php -------------------------------------------------------------------------------- /lib/Event/PollExpiredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollExpiredEvent.php -------------------------------------------------------------------------------- /lib/Event/PollOptionReorderedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollOptionReorderedEvent.php -------------------------------------------------------------------------------- /lib/Event/PollOwnerChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollOwnerChangeEvent.php -------------------------------------------------------------------------------- /lib/Event/PollReopenEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollReopenEvent.php -------------------------------------------------------------------------------- /lib/Event/PollRestoredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollRestoredEvent.php -------------------------------------------------------------------------------- /lib/Event/PollUpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/PollUpdatedEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareChangedDisplayNameEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareChangedDisplayNameEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareChangedEmailEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareChangedEmailEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareChangedLabelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareChangedLabelEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareChangedRegistrationConstraintEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareChangedRegistrationConstraintEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareCreateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareCreateEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareDeletedEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareLockedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareLockedEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareRegistrationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareRegistrationEvent.php -------------------------------------------------------------------------------- /lib/Event/ShareTypeChangedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/ShareTypeChangedEvent.php -------------------------------------------------------------------------------- /lib/Event/VoteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/VoteEvent.php -------------------------------------------------------------------------------- /lib/Event/VoteSetEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Event/VoteSetEvent.php -------------------------------------------------------------------------------- /lib/Exceptions/AlreadyDeletedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/AlreadyDeletedException.php -------------------------------------------------------------------------------- /lib/Exceptions/CirclesNotEnabledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/CirclesNotEnabledException.php -------------------------------------------------------------------------------- /lib/Exceptions/ContactsNotEnabledExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/ContactsNotEnabledExceptions.php -------------------------------------------------------------------------------- /lib/Exceptions/EmptyTitleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/EmptyTitleException.php -------------------------------------------------------------------------------- /lib/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/Exception.php -------------------------------------------------------------------------------- /lib/Exceptions/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/ForbiddenException.php -------------------------------------------------------------------------------- /lib/Exceptions/InsufficientAttributesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InsufficientAttributesException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidAccessException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidAccessException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidClassException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidClassException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidEmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidEmailAddress.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidPollTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidPollTypeException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidShareTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidShareTypeException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidShowResultsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidShowResultsException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidUsernameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/InvalidUsernameException.php -------------------------------------------------------------------------------- /lib/Exceptions/NoDeadLineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/NoDeadLineException.php -------------------------------------------------------------------------------- /lib/Exceptions/NoEmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/NoEmailAddress.php -------------------------------------------------------------------------------- /lib/Exceptions/NoUpdatesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/NoUpdatesException.php -------------------------------------------------------------------------------- /lib/Exceptions/NotAuthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/NotAuthorizedException.php -------------------------------------------------------------------------------- /lib/Exceptions/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/NotFoundException.php -------------------------------------------------------------------------------- /lib/Exceptions/OCPEventException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/OCPEventException.php -------------------------------------------------------------------------------- /lib/Exceptions/PreconditionColumnIsMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/PreconditionColumnIsMissingException.php -------------------------------------------------------------------------------- /lib/Exceptions/PreconditionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/PreconditionException.php -------------------------------------------------------------------------------- /lib/Exceptions/PreconditionTableIsMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/PreconditionTableIsMissingException.php -------------------------------------------------------------------------------- /lib/Exceptions/SchemaMissmatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/SchemaMissmatchException.php -------------------------------------------------------------------------------- /lib/Exceptions/ShareAlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/ShareAlreadyExistsException.php -------------------------------------------------------------------------------- /lib/Exceptions/ShareNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/ShareNotFoundException.php -------------------------------------------------------------------------------- /lib/Exceptions/TooShortException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/TooShortException.php -------------------------------------------------------------------------------- /lib/Exceptions/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/UserNotFoundException.php -------------------------------------------------------------------------------- /lib/Exceptions/VoteLimitExceededException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/VoteLimitExceededException.php -------------------------------------------------------------------------------- /lib/Exceptions/WatchModeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Exceptions/WatchModeChanged.php -------------------------------------------------------------------------------- /lib/Filter/ActivityFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Filter/ActivityFilter.php -------------------------------------------------------------------------------- /lib/Helper/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Helper/Container.php -------------------------------------------------------------------------------- /lib/Helper/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Helper/Hash.php -------------------------------------------------------------------------------- /lib/Helper/SqlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Helper/SqlHelper.php -------------------------------------------------------------------------------- /lib/Listener/AddMissingIndicesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/AddMissingIndicesListener.php -------------------------------------------------------------------------------- /lib/Listener/BaseListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/BaseListener.php -------------------------------------------------------------------------------- /lib/Listener/CommentListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/CommentListener.php -------------------------------------------------------------------------------- /lib/Listener/GroupDeletedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/GroupDeletedListener.php -------------------------------------------------------------------------------- /lib/Listener/OptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/OptionListener.php -------------------------------------------------------------------------------- /lib/Listener/PollListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/PollListener.php -------------------------------------------------------------------------------- /lib/Listener/PollsReferenceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/PollsReferenceListener.php -------------------------------------------------------------------------------- /lib/Listener/ShareListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/ShareListener.php -------------------------------------------------------------------------------- /lib/Listener/UserDeletedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/UserDeletedListener.php -------------------------------------------------------------------------------- /lib/Listener/VoteListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Listener/VoteListener.php -------------------------------------------------------------------------------- /lib/Middleware/RequestAttributesMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Middleware/RequestAttributesMiddleware.php -------------------------------------------------------------------------------- /lib/Migration/FixVotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/FixVotes.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/CleanTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/CleanTables.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/CreateIndices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/CreateIndices.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/CreateTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/CreateTables.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/DropOrphanedColumns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/DropOrphanedColumns.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/DropOrphanedTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/DropOrphanedTables.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/FixNullish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/FixNullish.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/Install.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/MigratePublicToOpen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/MigratePublicToOpen.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/RemoveIndices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/RemoveIndices.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/RemoveObsoleteMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/RemoveObsoleteMigrations.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/SetLastInteraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/SetLastInteraction.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/UpdateHashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/UpdateHashes.php -------------------------------------------------------------------------------- /lib/Migration/RepairSteps/UpdateInteraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/RepairSteps/UpdateInteraction.php -------------------------------------------------------------------------------- /lib/Migration/V5/TableSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/V5/TableSchema.php -------------------------------------------------------------------------------- /lib/Migration/Version080300Date20250812231603.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/Version080300Date20250812231603.php -------------------------------------------------------------------------------- /lib/Migration/Version080300Date20250816201201.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/Version080300Date20250816201201.php -------------------------------------------------------------------------------- /lib/Migration/Version080301Date20250822153002.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/Version080301Date20250822153002.php -------------------------------------------------------------------------------- /lib/Migration/Version080301Date20250822182903.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/Version080301Date20250822182903.php -------------------------------------------------------------------------------- /lib/Migration/Version080303Date20250824090101.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/Version080303Date20250824090101.php -------------------------------------------------------------------------------- /lib/Migration/Version080307Date20250826231102.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Migration/Version080307Date20250826231102.php -------------------------------------------------------------------------------- /lib/Model/CalendarEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/CalendarEvent.php -------------------------------------------------------------------------------- /lib/Model/Group/Circle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Group/Circle.php -------------------------------------------------------------------------------- /lib/Model/Group/ContactGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Group/ContactGroup.php -------------------------------------------------------------------------------- /lib/Model/Group/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Group/Group.php -------------------------------------------------------------------------------- /lib/Model/Mail/ConfirmationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Mail/ConfirmationMail.php -------------------------------------------------------------------------------- /lib/Model/Mail/InvitationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Mail/InvitationMail.php -------------------------------------------------------------------------------- /lib/Model/Mail/MailBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Mail/MailBase.php -------------------------------------------------------------------------------- /lib/Model/Mail/NotificationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Mail/NotificationMail.php -------------------------------------------------------------------------------- /lib/Model/Mail/ReminderMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Mail/ReminderMail.php -------------------------------------------------------------------------------- /lib/Model/Search/PollsSearchResultEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Search/PollsSearchResultEntry.php -------------------------------------------------------------------------------- /lib/Model/SentResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/SentResult.php -------------------------------------------------------------------------------- /lib/Model/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Sequence.php -------------------------------------------------------------------------------- /lib/Model/SequenceUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/SequenceUnit.php -------------------------------------------------------------------------------- /lib/Model/Settings/AppSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Settings/AppSettings.php -------------------------------------------------------------------------------- /lib/Model/Settings/SystemSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/Settings/SystemSettings.php -------------------------------------------------------------------------------- /lib/Model/SimpleOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/SimpleOption.php -------------------------------------------------------------------------------- /lib/Model/User/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/Admin.php -------------------------------------------------------------------------------- /lib/Model/User/Anon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/Anon.php -------------------------------------------------------------------------------- /lib/Model/User/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/Contact.php -------------------------------------------------------------------------------- /lib/Model/User/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/Cron.php -------------------------------------------------------------------------------- /lib/Model/User/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/Email.php -------------------------------------------------------------------------------- /lib/Model/User/GenericUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/GenericUser.php -------------------------------------------------------------------------------- /lib/Model/User/Ghost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/Ghost.php -------------------------------------------------------------------------------- /lib/Model/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/User/User.php -------------------------------------------------------------------------------- /lib/Model/UserBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Model/UserBase.php -------------------------------------------------------------------------------- /lib/Notification/Notifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Notification/Notifier.php -------------------------------------------------------------------------------- /lib/Provider/ActivityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Provider/ActivityProvider.php -------------------------------------------------------------------------------- /lib/Provider/ReferenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Provider/ReferenceProvider.php -------------------------------------------------------------------------------- /lib/Provider/SearchProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Provider/SearchProvider.php -------------------------------------------------------------------------------- /lib/ResponseDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/ResponseDefinitions.php -------------------------------------------------------------------------------- /lib/Service/ActivityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/ActivityService.php -------------------------------------------------------------------------------- /lib/Service/CalendarService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/CalendarService.php -------------------------------------------------------------------------------- /lib/Service/CommentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/CommentService.php -------------------------------------------------------------------------------- /lib/Service/DiffService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/DiffService.php -------------------------------------------------------------------------------- /lib/Service/LogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/LogService.php -------------------------------------------------------------------------------- /lib/Service/MailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/MailService.php -------------------------------------------------------------------------------- /lib/Service/NotificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/NotificationService.php -------------------------------------------------------------------------------- /lib/Service/OptionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/OptionService.php -------------------------------------------------------------------------------- /lib/Service/PollGroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/PollGroupService.php -------------------------------------------------------------------------------- /lib/Service/PollService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/PollService.php -------------------------------------------------------------------------------- /lib/Service/PreferencesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/PreferencesService.php -------------------------------------------------------------------------------- /lib/Service/SettingsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/SettingsService.php -------------------------------------------------------------------------------- /lib/Service/ShareService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/ShareService.php -------------------------------------------------------------------------------- /lib/Service/SubscriptionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/SubscriptionService.php -------------------------------------------------------------------------------- /lib/Service/SystemService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/SystemService.php -------------------------------------------------------------------------------- /lib/Service/VoteService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/VoteService.php -------------------------------------------------------------------------------- /lib/Service/WatchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Service/WatchService.php -------------------------------------------------------------------------------- /lib/Settings/ActivitySettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Settings/ActivitySettings.php -------------------------------------------------------------------------------- /lib/Settings/ActivityVote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Settings/ActivityVote.php -------------------------------------------------------------------------------- /lib/Settings/AdminSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Settings/AdminSection.php -------------------------------------------------------------------------------- /lib/Settings/AdminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Settings/AdminSettings.php -------------------------------------------------------------------------------- /lib/Settings/PersonalSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Settings/PersonalSection.php -------------------------------------------------------------------------------- /lib/Settings/PersonalSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Settings/PersonalSettings.php -------------------------------------------------------------------------------- /lib/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/Types.php -------------------------------------------------------------------------------- /lib/UserSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/lib/UserSession.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/phpunit.integration.xml -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /psalm-baseline.xml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/psalm-baseline.xml.license -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/psalm.xml -------------------------------------------------------------------------------- /screenshots/edit-poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/screenshots/edit-poll.png -------------------------------------------------------------------------------- /screenshots/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/screenshots/overview.png -------------------------------------------------------------------------------- /screenshots/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/screenshots/share.png -------------------------------------------------------------------------------- /screenshots/vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/screenshots/vote.png -------------------------------------------------------------------------------- /src/Api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/index.ts -------------------------------------------------------------------------------- /src/Api/modules/HttpApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/HttpApi.js -------------------------------------------------------------------------------- /src/Api/modules/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/activity.ts -------------------------------------------------------------------------------- /src/Api/modules/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/admin.ts -------------------------------------------------------------------------------- /src/Api/modules/api.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/api.types.ts -------------------------------------------------------------------------------- /src/Api/modules/appSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/appSettings.ts -------------------------------------------------------------------------------- /src/Api/modules/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/calendar.ts -------------------------------------------------------------------------------- /src/Api/modules/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/comments.ts -------------------------------------------------------------------------------- /src/Api/modules/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/options.ts -------------------------------------------------------------------------------- /src/Api/modules/pollGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/pollGroups.ts -------------------------------------------------------------------------------- /src/Api/modules/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/polls.ts -------------------------------------------------------------------------------- /src/Api/modules/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/public.ts -------------------------------------------------------------------------------- /src/Api/modules/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/session.ts -------------------------------------------------------------------------------- /src/Api/modules/shares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/shares.ts -------------------------------------------------------------------------------- /src/Api/modules/userSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/userSettings.ts -------------------------------------------------------------------------------- /src/Api/modules/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/validators.ts -------------------------------------------------------------------------------- /src/Api/modules/votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Api/modules/votes.ts -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Exceptions/Exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Exceptions/Exceptions.ts -------------------------------------------------------------------------------- /src/Types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/Types/index.ts -------------------------------------------------------------------------------- /src/adminSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/adminSettings.ts -------------------------------------------------------------------------------- /src/assets/icons/maybe-vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/icons/maybe-vote.svg -------------------------------------------------------------------------------- /src/assets/icons/no-vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/icons/no-vote.svg -------------------------------------------------------------------------------- /src/assets/icons/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/icons/spinner.svg -------------------------------------------------------------------------------- /src/assets/icons/yes-vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/icons/yes-vote.svg -------------------------------------------------------------------------------- /src/assets/scss/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/globals.scss -------------------------------------------------------------------------------- /src/assets/scss/hacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/hacks.scss -------------------------------------------------------------------------------- /src/assets/scss/markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/markdown.scss -------------------------------------------------------------------------------- /src/assets/scss/polls-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/polls-icon.scss -------------------------------------------------------------------------------- /src/assets/scss/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/print.scss -------------------------------------------------------------------------------- /src/assets/scss/transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/transitions.scss -------------------------------------------------------------------------------- /src/assets/scss/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/assets/scss/vars.scss -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionAddOption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionAddOption.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionAddPoll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionAddPoll.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionDelete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionDelete.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionDeleteOrphanedVotes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionDeleteOrphanedVotes.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionOpenOptionsSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionOpenOptionsSidebar.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionOpenSharesSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionOpenSharesSidebar.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionRegister.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionRegister.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionSendConfirmed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionSendConfirmed.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionSwitchSafeTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionSwitchSafeTable.vue -------------------------------------------------------------------------------- /src/components/Actions/modules/ActionToggleSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Actions/modules/ActionToggleSidebar.vue -------------------------------------------------------------------------------- /src/components/Activity/Activities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Activity/Activities.vue -------------------------------------------------------------------------------- /src/components/Activity/ActivityItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Activity/ActivityItem.vue -------------------------------------------------------------------------------- /src/components/AppIcons/MaybeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/AppIcons/MaybeIcon.vue -------------------------------------------------------------------------------- /src/components/AppIcons/PollsAppIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/AppIcons/PollsAppIcon.vue -------------------------------------------------------------------------------- /src/components/AppIcons/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/AppIcons/Spinner.vue -------------------------------------------------------------------------------- /src/components/AppIcons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/AppIcons/types.ts -------------------------------------------------------------------------------- /src/components/Base/modules/BadgeDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/BadgeDiv.vue -------------------------------------------------------------------------------- /src/components/Base/modules/BadgeSmallDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/BadgeSmallDiv.vue -------------------------------------------------------------------------------- /src/components/Base/modules/ButtonModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/ButtonModal.vue -------------------------------------------------------------------------------- /src/components/Base/modules/CardDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/CardDiv.vue -------------------------------------------------------------------------------- /src/components/Base/modules/Collapsible.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/Collapsible.vue -------------------------------------------------------------------------------- /src/components/Base/modules/ConfigBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/ConfigBox.vue -------------------------------------------------------------------------------- /src/components/Base/modules/DateBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/DateBox.vue -------------------------------------------------------------------------------- /src/components/Base/modules/DateTimePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/DateTimePicker.vue -------------------------------------------------------------------------------- /src/components/Base/modules/FlexSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/FlexSettings.vue -------------------------------------------------------------------------------- /src/components/Base/modules/FlexSpacer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/FlexSpacer.vue -------------------------------------------------------------------------------- /src/components/Base/modules/HeaderBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/HeaderBar.vue -------------------------------------------------------------------------------- /src/components/Base/modules/InputDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/InputDiv.vue -------------------------------------------------------------------------------- /src/components/Base/modules/IntersectionObserver.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/IntersectionObserver.vue -------------------------------------------------------------------------------- /src/components/Base/modules/LoadingOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/LoadingOverlay.vue -------------------------------------------------------------------------------- /src/components/Base/modules/QrModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/QrModal.vue -------------------------------------------------------------------------------- /src/components/Base/modules/RadioGroupDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/RadioGroupDiv.vue -------------------------------------------------------------------------------- /src/components/Base/modules/StickyDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Base/modules/StickyDiv.vue -------------------------------------------------------------------------------- /src/components/Calendar/CalendarInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Calendar/CalendarInfo.vue -------------------------------------------------------------------------------- /src/components/Calendar/CalendarPeek.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Calendar/CalendarPeek.vue -------------------------------------------------------------------------------- /src/components/Cards/CardAddProposals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardAddProposals.vue -------------------------------------------------------------------------------- /src/components/Cards/CardAnonymousPollHint.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardAnonymousPollHint.vue -------------------------------------------------------------------------------- /src/components/Cards/CardClosedPoll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardClosedPoll.vue -------------------------------------------------------------------------------- /src/components/Cards/CardLimitedVotes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardLimitedVotes.vue -------------------------------------------------------------------------------- /src/components/Cards/CardLocked.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardLocked.vue -------------------------------------------------------------------------------- /src/components/Cards/CardRegister.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardRegister.vue -------------------------------------------------------------------------------- /src/components/Cards/CardSendConfirmations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardSendConfirmations.vue -------------------------------------------------------------------------------- /src/components/Cards/CardUnpublishedPoll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/CardUnpublishedPoll.vue -------------------------------------------------------------------------------- /src/components/Cards/VoteInfoCards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Cards/VoteInfoCards.vue -------------------------------------------------------------------------------- /src/components/Combo/ComboTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Combo/ComboTable.vue -------------------------------------------------------------------------------- /src/components/Combo/VoteColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Combo/VoteColumn.vue -------------------------------------------------------------------------------- /src/components/Combo/VoteItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Combo/VoteItem.vue -------------------------------------------------------------------------------- /src/components/Comments/CommentAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Comments/CommentAdd.vue -------------------------------------------------------------------------------- /src/components/Comments/CommentItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Comments/CommentItem.vue -------------------------------------------------------------------------------- /src/components/Comments/Comments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Comments/Comments.vue -------------------------------------------------------------------------------- /src/components/Configuration/AutoReminderInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/AutoReminderInformation.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigAllowComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigAllowComment.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigAllowMayBe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigAllowMayBe.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigAnonymous.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigAnonymous.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigAutoReminder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigAutoReminder.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigClosing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigClosing.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigDangerArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigDangerArea.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigDescription.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigForceConfidentialComments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigForceConfidentialComments.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigForceViewMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigForceViewMode.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigOptionLimit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigOptionLimit.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigProposals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigProposals.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigShowResults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigShowResults.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigTitle.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigUseNo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigUseNo.vue -------------------------------------------------------------------------------- /src/components/Configuration/ConfigVoteLimit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Configuration/ConfigVoteLimit.vue -------------------------------------------------------------------------------- /src/components/Create/CreateDlg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Create/CreateDlg.vue -------------------------------------------------------------------------------- /src/components/Create/PollCreateDlg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Create/PollCreateDlg.vue -------------------------------------------------------------------------------- /src/components/Export/ExportPoll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Export/ExportPoll.vue -------------------------------------------------------------------------------- /src/components/Modals/DeletePollDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Modals/DeletePollDialog.vue -------------------------------------------------------------------------------- /src/components/Modals/OptionsAddModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Modals/OptionsAddModal.vue -------------------------------------------------------------------------------- /src/components/Modals/TransferPollDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Modals/TransferPollDialog.vue -------------------------------------------------------------------------------- /src/components/Navigation/PollNavigationItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Navigation/PollNavigationItems.vue -------------------------------------------------------------------------------- /src/components/Options/Counter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/Counter.vue -------------------------------------------------------------------------------- /src/components/Options/OptionCloneDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionCloneDate.vue -------------------------------------------------------------------------------- /src/components/Options/OptionItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionItem.vue -------------------------------------------------------------------------------- /src/components/Options/OptionItemDateBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionItemDateBox.vue -------------------------------------------------------------------------------- /src/components/Options/OptionItemOwner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionItemOwner.vue -------------------------------------------------------------------------------- /src/components/Options/OptionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionMenu.vue -------------------------------------------------------------------------------- /src/components/Options/OptionsDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionsDate.vue -------------------------------------------------------------------------------- /src/components/Options/OptionsDateAddDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionsDateAddDialog.vue -------------------------------------------------------------------------------- /src/components/Options/OptionsDateShift.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionsDateShift.vue -------------------------------------------------------------------------------- /src/components/Options/OptionsText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionsText.vue -------------------------------------------------------------------------------- /src/components/Options/OptionsTextAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionsTextAdd.vue -------------------------------------------------------------------------------- /src/components/Options/OptionsTextAddBulk.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Options/OptionsTextAddBulk.vue -------------------------------------------------------------------------------- /src/components/Poll/MarkDownDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Poll/MarkDownDescription.vue -------------------------------------------------------------------------------- /src/components/Poll/PollHeaderButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Poll/PollHeaderButtons.vue -------------------------------------------------------------------------------- /src/components/Poll/PollInfoLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Poll/PollInfoLine.vue -------------------------------------------------------------------------------- /src/components/Poll/PollInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Poll/PollInformation.vue -------------------------------------------------------------------------------- /src/components/PollGroup/ConfigDescriptionPollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollGroup/ConfigDescriptionPollGroup.vue -------------------------------------------------------------------------------- /src/components/PollGroup/ConfigNamePollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollGroup/ConfigNamePollGroup.vue -------------------------------------------------------------------------------- /src/components/PollGroup/ConfigTitleExtPollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollGroup/ConfigTitleExtPollGroup.vue -------------------------------------------------------------------------------- /src/components/PollGroup/PollGroupEditDlg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollGroup/PollGroupEditDlg.vue -------------------------------------------------------------------------------- /src/components/PollList/PollItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollList/PollItem.vue -------------------------------------------------------------------------------- /src/components/PollList/PollItemActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollList/PollItemActions.vue -------------------------------------------------------------------------------- /src/components/PollList/PollListSort.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/PollList/PollListSort.vue -------------------------------------------------------------------------------- /src/components/Public/PublicRegisterModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Public/PublicRegisterModal.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminActivities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminActivities.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminArchivePolls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminArchivePolls.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminCombo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminCombo.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminDeletePolls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminDeletePolls.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminEmail.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminJobs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminJobs.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminLegal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminLegal.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminPerformance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminPerformance.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminPollCreation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminPollCreation.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminPollDownload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminPollDownload.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminPollsInNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminPollsInNavigation.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminShareOpenPoll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminShareOpenPoll.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminSharePublicCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminSharePublicCreate.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminSharePublicShowLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminSharePublicShowLogin.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminShowMailAddresses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminShowMailAddresses.vue -------------------------------------------------------------------------------- /src/components/Settings/AdminSettings/AdminUnrescrictedOwners.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/AdminSettings/AdminUnrescrictedOwners.vue -------------------------------------------------------------------------------- /src/components/Settings/UserSettings/CalendarSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/UserSettings/CalendarSettings.vue -------------------------------------------------------------------------------- /src/components/Settings/UserSettings/FeatureSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/UserSettings/FeatureSettings.vue -------------------------------------------------------------------------------- /src/components/Settings/UserSettings/StyleSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/UserSettings/StyleSettings.vue -------------------------------------------------------------------------------- /src/components/Settings/UserSettingsDlg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Settings/UserSettingsDlg.vue -------------------------------------------------------------------------------- /src/components/Shares/ShareItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/ShareItem.vue -------------------------------------------------------------------------------- /src/components/Shares/ShareItemAllUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/ShareItemAllUsers.vue -------------------------------------------------------------------------------- /src/components/Shares/ShareMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/ShareMenu.vue -------------------------------------------------------------------------------- /src/components/Shares/SharePublicAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/SharePublicAdd.vue -------------------------------------------------------------------------------- /src/components/Shares/SharesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/SharesList.vue -------------------------------------------------------------------------------- /src/components/Shares/SharesListLocked.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/SharesListLocked.vue -------------------------------------------------------------------------------- /src/components/Shares/SharesListPollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/SharesListPollGroup.vue -------------------------------------------------------------------------------- /src/components/Shares/SharesListUnsent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Shares/SharesListUnsent.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabActivity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabActivity.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabComments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabComments.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabConfiguration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabConfiguration.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabConfigurationPollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabConfigurationPollGroup.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabDatePolls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabDatePolls.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabOptions.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabShare.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabShare.vue -------------------------------------------------------------------------------- /src/components/SideBar/SideBarTabSharePollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/SideBar/SideBarTabSharePollGroup.vue -------------------------------------------------------------------------------- /src/components/Subscription/ActionSubscription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/Subscription/ActionSubscription.vue -------------------------------------------------------------------------------- /src/components/User/ActionInputDisplayName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/ActionInputDisplayName.vue -------------------------------------------------------------------------------- /src/components/User/ActionInputEmailAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/ActionInputEmailAddress.vue -------------------------------------------------------------------------------- /src/components/User/UserAvatar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/UserAvatar.types.ts -------------------------------------------------------------------------------- /src/components/User/UserAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/UserAvatar.vue -------------------------------------------------------------------------------- /src/components/User/UserBubble.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/UserBubble.vue -------------------------------------------------------------------------------- /src/components/User/UserItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/UserItem.vue -------------------------------------------------------------------------------- /src/components/User/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/UserMenu.vue -------------------------------------------------------------------------------- /src/components/User/UserSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/User/UserSearch.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VoteButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VoteButton.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VoteIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VoteIndicator.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VoteItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VoteItem.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VoteMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VoteMenu.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VoteParticipant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VoteParticipant.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VoteTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VoteTable.vue -------------------------------------------------------------------------------- /src/components/VoteTable/VotersList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/components/VoteTable/VotersList.vue -------------------------------------------------------------------------------- /src/composables/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/composables/context.ts -------------------------------------------------------------------------------- /src/composables/elementWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/composables/elementWidth.ts -------------------------------------------------------------------------------- /src/composables/handleScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/composables/handleScroll.ts -------------------------------------------------------------------------------- /src/composables/usePollWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/composables/usePollWatcher.ts -------------------------------------------------------------------------------- /src/composables/usePollWatcher.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/composables/usePollWatcher.types.ts -------------------------------------------------------------------------------- /src/constants/dateUnits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/constants/dateUnits.ts -------------------------------------------------------------------------------- /src/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/dashboard.ts -------------------------------------------------------------------------------- /src/event-bus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/event-bus.d.ts -------------------------------------------------------------------------------- /src/helpers/modules/GuestBubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/GuestBubble.ts -------------------------------------------------------------------------------- /src/helpers/modules/SimpleLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/SimpleLink.ts -------------------------------------------------------------------------------- /src/helpers/modules/StoreHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/StoreHelper.ts -------------------------------------------------------------------------------- /src/helpers/modules/arrayHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/arrayHelper.ts -------------------------------------------------------------------------------- /src/helpers/modules/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/comments.ts -------------------------------------------------------------------------------- /src/helpers/modules/cookieHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/cookieHelper.ts -------------------------------------------------------------------------------- /src/helpers/modules/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/helpers/modules/logger.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/plugins/piniaDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/plugins/piniaDebounce.ts -------------------------------------------------------------------------------- /src/polls-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/polls-reference.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/stores/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/activity.ts -------------------------------------------------------------------------------- /src/stores/activity.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/activity.types.ts -------------------------------------------------------------------------------- /src/stores/appSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/appSettings.ts -------------------------------------------------------------------------------- /src/stores/appSettings.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/appSettings.types.ts -------------------------------------------------------------------------------- /src/stores/combo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/combo.ts -------------------------------------------------------------------------------- /src/stores/combo.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/combo.types.ts -------------------------------------------------------------------------------- /src/stores/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/comments.ts -------------------------------------------------------------------------------- /src/stores/comments.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/comments.types.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/options.ts -------------------------------------------------------------------------------- /src/stores/options.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/options.types.ts -------------------------------------------------------------------------------- /src/stores/poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/poll.ts -------------------------------------------------------------------------------- /src/stores/poll.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/poll.types.ts -------------------------------------------------------------------------------- /src/stores/pollGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/pollGroups.ts -------------------------------------------------------------------------------- /src/stores/pollGroups.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/pollGroups.types.ts -------------------------------------------------------------------------------- /src/stores/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/polls.ts -------------------------------------------------------------------------------- /src/stores/polls.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/polls.types.ts -------------------------------------------------------------------------------- /src/stores/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/preferences.ts -------------------------------------------------------------------------------- /src/stores/preferences.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/preferences.types.ts -------------------------------------------------------------------------------- /src/stores/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/session.ts -------------------------------------------------------------------------------- /src/stores/session.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/session.types.ts -------------------------------------------------------------------------------- /src/stores/shares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/shares.ts -------------------------------------------------------------------------------- /src/stores/shares.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/shares.types.ts -------------------------------------------------------------------------------- /src/stores/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/subscription.ts -------------------------------------------------------------------------------- /src/stores/votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/votes.ts -------------------------------------------------------------------------------- /src/stores/votes.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/stores/votes.types.ts -------------------------------------------------------------------------------- /src/userSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/userSettings.ts -------------------------------------------------------------------------------- /src/views/AdminSettingsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/AdminSettingsPage.vue -------------------------------------------------------------------------------- /src/views/Combo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/Combo.vue -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/Forbidden.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/Forbidden.vue -------------------------------------------------------------------------------- /src/views/Navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/Navigation.vue -------------------------------------------------------------------------------- /src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/NotFound.vue -------------------------------------------------------------------------------- /src/views/PollList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/PollList.vue -------------------------------------------------------------------------------- /src/views/Reference.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/Reference.vue -------------------------------------------------------------------------------- /src/views/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/SideBar.vue -------------------------------------------------------------------------------- /src/views/SideBarCombo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/SideBarCombo.vue -------------------------------------------------------------------------------- /src/views/SideBarPollGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/SideBarPollGroup.vue -------------------------------------------------------------------------------- /src/views/UserSettingsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/UserSettingsPage.vue -------------------------------------------------------------------------------- /src/views/Vote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/views/Vote.vue -------------------------------------------------------------------------------- /src/workers/pollWatcher.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/src/workers/pollWatcher.worker.ts -------------------------------------------------------------------------------- /stubs/circles-stubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/stubs/circles-stubs.php -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/stylelint.config.cjs -------------------------------------------------------------------------------- /sync_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/sync_list.txt -------------------------------------------------------------------------------- /sync_list.txt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/sync_list.txt.license -------------------------------------------------------------------------------- /templates/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/templates/main.php -------------------------------------------------------------------------------- /tests/Integration/App/AppTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Integration/App/AppTest.php -------------------------------------------------------------------------------- /tests/Integration/Command/Share/AddTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Integration/Command/Share/AddTest.php -------------------------------------------------------------------------------- /tests/Integration/Command/Share/RemoveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Integration/Command/Share/RemoveTest.php -------------------------------------------------------------------------------- /tests/Integration/Command/Share/TShareCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Integration/Command/Share/TShareCommandTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/PageControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Controller/PageControllerTest.php -------------------------------------------------------------------------------- /tests/Unit/Db/CommentMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Db/CommentMapperTest.php -------------------------------------------------------------------------------- /tests/Unit/Db/LogMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Db/LogMapperTest.php -------------------------------------------------------------------------------- /tests/Unit/Db/OptionMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Db/OptionMapperTest.php -------------------------------------------------------------------------------- /tests/Unit/Db/PollMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Db/PollMapperTest.php -------------------------------------------------------------------------------- /tests/Unit/Db/SubscriptionMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Db/SubscriptionMapperTest.php -------------------------------------------------------------------------------- /tests/Unit/Db/VoteMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Db/VoteMapperTest.php -------------------------------------------------------------------------------- /tests/Unit/Factories/CommentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/CommentFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/LogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/LogFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/OptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/OptionFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/PollFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/PollFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/PreferencesFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/PreferencesFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/ShareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/ShareFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/SubscriptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/SubscriptionFactory.php -------------------------------------------------------------------------------- /tests/Unit/Factories/VoteFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/Factories/VoteFactory.php -------------------------------------------------------------------------------- /tests/Unit/FactoryMuffin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/FactoryMuffin.php -------------------------------------------------------------------------------- /tests/Unit/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/Unit/UnitTestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/phpunit.integration.xml -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update-app-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/update-app-version.mjs -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/vendor-bin/openapi-extractor/composer.json -------------------------------------------------------------------------------- /vendor-bin/php-cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/vendor-bin/php-cs-fixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/vendor-bin/psalm/composer.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/polls/HEAD/vite.config.js --------------------------------------------------------------------------------