Fix Activepieces piece logos and Verdaccio permissions
- Update Python piece logo URL to use official python.org logo - Update Ruby piece logo URL to use official ruby-lang.org logo - Fix Verdaccio config to allow authenticated publish ($all instead of $anonymous) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -2,8 +2,8 @@ import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
||||
import { PieceCategory } from '@activepieces/shared';
|
||||
import { runPythonCode } from './lib/run-python-code';
|
||||
|
||||
// Python logo - hosted on Django backend
|
||||
const PYTHON_LOGO = 'http://lvh.me:8000/static/images/python-logo.svg';
|
||||
// Python logo - use official Python logo from python.org
|
||||
const PYTHON_LOGO = 'https://www.python.org/static/community_logos/python-logo-generic.svg';
|
||||
|
||||
export const pythonCode = createPiece({
|
||||
displayName: 'Python Code',
|
||||
|
||||
@@ -2,8 +2,8 @@ import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
||||
import { PieceCategory } from '@activepieces/shared';
|
||||
import { runRubyCode } from './lib/run-ruby-code';
|
||||
|
||||
// Ruby logo - hosted on Django backend
|
||||
const RUBY_LOGO = 'http://lvh.me:8000/static/images/ruby-logo.svg';
|
||||
// Ruby logo - use official Ruby logo from ruby-lang.org
|
||||
const RUBY_LOGO = 'https://www.ruby-lang.org/images/header-ruby-logo.png';
|
||||
|
||||
export const rubyCode = createPiece({
|
||||
displayName: 'Ruby Code',
|
||||
|
||||
Reference in New Issue
Block a user